[Python-checkins] python/nondist/sandbox/setuptools EasyInstall.txt, 1.21, 1.22 ez_setup.py, 1.8, 1.9 setup.py, 1.18, 1.19

pje@users.sourceforge.net pje at users.sourceforge.net
Wed Jul 6 05:47:07 CEST 2005


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

Modified Files:
	EasyInstall.txt ez_setup.py setup.py 
Log Message:
Bump version to 0.5a5.


Index: EasyInstall.txt
===================================================================
RCS file: /cvsroot/python/python/nondist/sandbox/setuptools/EasyInstall.txt,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -d -r1.21 -r1.22
--- EasyInstall.txt	6 Jul 2005 03:46:15 -0000	1.21
+++ EasyInstall.txt	6 Jul 2005 03:47:04 -0000	1.22
@@ -23,13 +23,13 @@
 -------------------------
 
 Windows users can just download and run the `setuptools binary installer for
-Windows <http://peak.telecommunity.com/dist/setuptools-0.5a4.win32.exe>`_.
+Windows <http://peak.telecommunity.com/dist/setuptools-0.5a5.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.5a4-py2.3.egg
-.. _Python 2.4 egg: http://peak.telecommunity.com/dist/setuptools-0.5a4-py2.4.egg
+.. _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
 
 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.5a4"
+    easy_install -f http://peak.telecommunity.com/dist "setuptools>=0.5a5"
 
 **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.8
retrieving revision 1.9
diff -u -d -r1.8 -r1.9
--- ez_setup.py	6 Jul 2005 02:10:48 -0000	1.8
+++ ez_setup.py	6 Jul 2005 03:47:04 -0000	1.9
@@ -14,7 +14,7 @@
 This file can also be run as a script to install or upgrade setuptools.
 """
 
-DEFAULT_VERSION = "0.5a4"
+DEFAULT_VERSION = "0.5a5"
 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.18
retrieving revision 1.19
diff -u -d -r1.18 -r1.19
--- setup.py	6 Jul 2005 02:10:48 -0000	1.18
+++ setup.py	6 Jul 2005 03:47:04 -0000	1.19
@@ -1,7 +1,7 @@
 #!/usr/bin/env python
 """Distutils setup file, used to install or test 'setuptools'"""
 
-VERSION = "0.5a4"
+VERSION = "0.5a5"
 from setuptools import setup, find_packages, Require
 
 setup(



More information about the Python-checkins mailing list