diff options
| -rwxr-xr-x | ez_setup.py | 4 | ||||
| -rwxr-xr-x | release.sh | 1 | ||||
| -rwxr-xr-x | setuptools.egg-info/entry_points.txt | 2 | ||||
| -rwxr-xr-x | setuptools/command/sdist.py | 2 |
4 files changed, 7 insertions, 2 deletions
diff --git a/ez_setup.py b/ez_setup.py index f4de7e4b..bb8b5acc 100755 --- a/ez_setup.py +++ b/ez_setup.py @@ -28,6 +28,10 @@ md5_data = { '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', @@ -12,6 +12,7 @@ export VERSION="0.6c10" 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 && \ diff --git a/setuptools.egg-info/entry_points.txt b/setuptools.egg-info/entry_points.txt index 10f1da6c..2642c316 100755 --- a/setuptools.egg-info/entry_points.txt +++ b/setuptools.egg-info/entry_points.txt @@ -31,7 +31,7 @@ depends.txt = setuptools.command.egg_info:warn_depends_obsolete [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 diff --git a/setuptools/command/sdist.py b/setuptools/command/sdist.py index d5121de5..d84afdb8 100755 --- a/setuptools/command/sdist.py +++ b/setuptools/command/sdist.py @@ -181,7 +181,7 @@ class sdist(_sdist): 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) |
