[Python-checkins] python/nondist/sandbox/setuptools EasyInstall.txt, 1.24, 1.25 ez_setup.py, 1.10, 1.11 setup.py, 1.19, 1.20

pje@users.sourceforge.net pje at users.sourceforge.net
Thu Jul 7 04:10:27 CEST 2005


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

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


Index: EasyInstall.txt
===================================================================
RCS file: /cvsroot/python/python/nondist/sandbox/setuptools/EasyInstall.txt,v
retrieving revision 1.24
retrieving revision 1.25
diff -u -d -r1.24 -r1.25
--- EasyInstall.txt	7 Jul 2005 02:05:56 -0000	1.24
+++ EasyInstall.txt	7 Jul 2005 02:10:14 -0000	1.25
@@ -23,13 +23,13 @@
 -------------------------
 
 Windows users can just download and run the `setuptools binary installer for
-Windows <http://peak.telecommunity.com/dist/setuptools-0.5a5.win32.exe>`_.
+Windows <http://peak.telecommunity.com/dist/setuptools-0.5a6.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 `Python 2.3 egg`_ or `Python 2.4 egg`_ for you.
 
-.. _Python 2.3 egg: http://peak.telecommunity.com/dist/setuptools-0.5a5-py2.3.egg
-.. _Python 2.4 egg: http://peak.telecommunity.com/dist/setuptools-0.5a5-py2.4.egg
+.. _Python 2.3 egg: http://peak.telecommunity.com/dist/setuptools-0.5a6-py2.3.egg
+.. _Python 2.4 egg: http://peak.telecommunity.com/dist/setuptools-0.5a6-py2.4.egg
 
 You may receive a message telling you about an obsolete version of
 setuptools being present; if so, you must be sure to delete it entirely, along
@@ -66,7 +66,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.5a5"
+    easy_install -f http://peak.telecommunity.com/dist "setuptools>=0.5a6"
 
 **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.10
retrieving revision 1.11
diff -u -d -r1.10 -r1.11
--- ez_setup.py	7 Jul 2005 01:52:21 -0000	1.10
+++ ez_setup.py	7 Jul 2005 02:10:14 -0000	1.11
@@ -14,7 +14,7 @@
 This file can also be run as a script to install or upgrade setuptools.
 """
 
-DEFAULT_VERSION = "0.5a5"
+DEFAULT_VERSION = "0.5a6"
 DEFAULT_URL     = "http://peak.telecommunity.com/dist/"
 
 import sys, os

Index: setup.py
===================================================================
RCS file: /cvsroot/python/python/nondist/sandbox/setuptools/setup.py,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -d -r1.19 -r1.20
--- setup.py	6 Jul 2005 03:47:04 -0000	1.19
+++ setup.py	7 Jul 2005 02:10:14 -0000	1.20
@@ -1,7 +1,7 @@
 #!/usr/bin/env python
 """Distutils setup file, used to install or test 'setuptools'"""
 
-VERSION = "0.5a5"
+VERSION = "0.5a6"
 from setuptools import setup, find_packages, Require
 
 setup(



More information about the Python-checkins mailing list