[Python-checkins] r75540 - in sandbox/branches/setuptools-0.6: ez_setup.py release.sh setuptools.egg-info/entry_points.txt setuptools/command/sdist.py

phillip.eby python-checkins at python.org
Mon Oct 19 21:46:35 CEST 2009


Author: phillip.eby
Date: Mon Oct 19 21:46:34 2009
New Revision: 75540

Log:
Release update, fix string.join in README warning


Modified:
   sandbox/branches/setuptools-0.6/ez_setup.py
   sandbox/branches/setuptools-0.6/release.sh
   sandbox/branches/setuptools-0.6/setuptools.egg-info/entry_points.txt
   sandbox/branches/setuptools-0.6/setuptools/command/sdist.py

Modified: sandbox/branches/setuptools-0.6/ez_setup.py
==============================================================================
--- sandbox/branches/setuptools-0.6/ez_setup.py	(original)
+++ sandbox/branches/setuptools-0.6/ez_setup.py	Mon Oct 19 21:46:34 2009
@@ -28,6 +28,10 @@
     'setuptools-0.6b4-py2.4.egg': '4cb2a185d228dacffb2d17f103b3b1c4',
     'setuptools-0.6c1-py2.3.egg': 'b3f2b5539d65cb7f74ad79127f1a908c',
     'setuptools-0.6c1-py2.4.egg': 'b45adeda0667d2d2ffe14009364f2a4b',
+    'setuptools-0.6c10-py2.3.egg': 'cb00cbd3d93b66f6c118a1c042113f93',
+    'setuptools-0.6c10-py2.4.egg': 'be702e15b4b61628e059d6ab88335a87',
+    'setuptools-0.6c10-py2.5.egg': '79b809922c0ce55e2d8b5b0cc31da0f2',
+    'setuptools-0.6c10-py2.6.egg': 'c4b741e774a793609d508ff4a2a21194',
     'setuptools-0.6c2-py2.3.egg': 'f0064bf6aa2b7d0f3ba0b43f20817c27',
     'setuptools-0.6c2-py2.4.egg': '616192eec35f47e8ea16cd6a122b7277',
     'setuptools-0.6c3-py2.3.egg': 'f181fa125dfe85a259c9cd6f1d7b78fa',

Modified: sandbox/branches/setuptools-0.6/release.sh
==============================================================================
--- sandbox/branches/setuptools-0.6/release.sh	(original)
+++ sandbox/branches/setuptools-0.6/release.sh	Mon Oct 19 21:46:34 2009
@@ -12,6 +12,7 @@
 python2.3 setup.py -q release source --target-version=2.3 upload && \
 python2.4 setup.py -q release binary --target-version=2.4 upload && \
 python2.5 setup.py -q release binary --target-version=2.5 upload && \
+python2.6 setup.py -q release binary --target-version=2.6 upload && \
 python2.3 ez_setup.py --md5update dist/setuptools-$VERSION*-py2.?.egg && \
   cp ez_setup.py virtual-python.py ~/distrib/ && \
   cp ez_setup.py ~/projects/ez_setup/__init__.py && \

Modified: sandbox/branches/setuptools-0.6/setuptools.egg-info/entry_points.txt
==============================================================================
--- sandbox/branches/setuptools-0.6/setuptools.egg-info/entry_points.txt	(original)
+++ sandbox/branches/setuptools-0.6/setuptools.egg-info/entry_points.txt	Mon Oct 19 21:46:34 2009
@@ -31,7 +31,7 @@
 
 [console_scripts]
 easy_install = setuptools.command.easy_install:main
-easy_install-2.5 = setuptools.command.easy_install:main
+easy_install-2.6 = setuptools.command.easy_install:main
 
 [setuptools.file_finders]
 svn_cvs = setuptools.command.sdist:_default_revctrl

Modified: sandbox/branches/setuptools-0.6/setuptools/command/sdist.py
==============================================================================
--- sandbox/branches/setuptools-0.6/setuptools/command/sdist.py	(original)
+++ sandbox/branches/setuptools-0.6/setuptools/command/sdist.py	Mon Oct 19 21:46:34 2009
@@ -181,7 +181,7 @@
 
                 if not got_it:
                     self.warn("standard file not found: should have one of " +
-                              string.join(alts, ', '))
+                              ', '.join(alts))
             else:
                 if os.path.exists(fn):
                     self.filelist.append(fn)


More information about the Python-checkins mailing list