[Python-checkins] python/nondist/sandbox/setuptools EasyInstall.txt, 1.36, 1.37 ez_setup.py, 1.15, 1.16 setup.py, 1.26, 1.27 setuptools.txt, 1.9, 1.10

pje@users.sourceforge.net pje at users.sourceforge.net
Tue Jul 12 07:32:08 CEST 2005


Update of /cvsroot/python/python/nondist/sandbox/setuptools
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26625

Modified Files:
	EasyInstall.txt ez_setup.py setup.py setuptools.txt 
Log Message:
Bump version #.


Index: EasyInstall.txt
===================================================================
RCS file: /cvsroot/python/python/nondist/sandbox/setuptools/EasyInstall.txt,v
retrieving revision 1.36
retrieving revision 1.37
diff -u -d -r1.36 -r1.37
--- EasyInstall.txt	12 Jul 2005 05:31:36 -0000	1.36
+++ EasyInstall.txt	12 Jul 2005 05:32:05 -0000	1.37
@@ -29,7 +29,7 @@
 -------------------------
 
 Windows users can just download and run the `setuptools binary installer for
-Windows <http://peak.telecommunity.com/dist/setuptools-0.5a9.win32.exe>`_.
+Windows <http://peak.telecommunity.com/dist/setuptools-0.5a10.win32.exe>`_.
 All others should just download `ez_setup.py
 <http://peak.telecommunity.com/dist/ez_setup.py>`_, and run it; this will
 download and install the appropriate ``setuptools`` egg for your Python
@@ -70,7 +70,7 @@
 **Example 2**. Install or upgrade a package by name and version by finding
 links on a given "download page"::
 
-    easy_install -f http://peak.telecommunity.com/dist "setuptools>=0.5a9"
+    easy_install -f http://peak.telecommunity.com/dist "setuptools>=0.5a10"
 
 **Example 3**. Download a source distribution from a specified URL,
 automatically building and installing it::

Index: ez_setup.py
===================================================================
RCS file: /cvsroot/python/python/nondist/sandbox/setuptools/ez_setup.py,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -d -r1.15 -r1.16
--- ez_setup.py	11 Jul 2005 04:21:56 -0000	1.15
+++ ez_setup.py	12 Jul 2005 05:32:05 -0000	1.16
@@ -14,7 +14,7 @@
 This file can also be run as a script to install or upgrade setuptools.
 """
 
-DEFAULT_VERSION = "0.5a9"
+DEFAULT_VERSION = "0.5a10"
 DEFAULT_URL     = "http://www.python.org/packages/source/s/setuptools/"
 
 import sys, os

Index: setup.py
===================================================================
RCS file: /cvsroot/python/python/nondist/sandbox/setuptools/setup.py,v
retrieving revision 1.26
retrieving revision 1.27
diff -u -d -r1.26 -r1.27
--- setup.py	12 Jul 2005 05:31:36 -0000	1.26
+++ setup.py	12 Jul 2005 05:32:05 -0000	1.27
@@ -15,7 +15,7 @@
     f.close()
     return ''.join(lines)
     
-VERSION = "0.5a9"
+VERSION = "0.5a10"
 
 from setuptools import setup, find_packages
 

Index: setuptools.txt
===================================================================
RCS file: /cvsroot/python/python/nondist/sandbox/setuptools/setuptools.txt,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -d -r1.9 -r1.10
--- setuptools.txt	12 Jul 2005 05:31:36 -0000	1.9
+++ setuptools.txt	12 Jul 2005 05:32:05 -0000	1.10
@@ -64,7 +64,7 @@
 =========================
 
 Windows users can just download and run the `setuptools binary installer for
-Windows <http://peak.telecommunity.com/dist/setuptools-0.5a9.win32.exe>`_.
+Windows <http://peak.telecommunity.com/dist/setuptools-0.5a10.win32.exe>`_.
 All others should just download `ez_setup.py`_ and run it; this will
 download and install the appropriate egg for your Python version.
 



More information about the Python-checkins mailing list