diff options
| author | PJ Eby <distutils-sig@python.org> | 2005-08-22 03:50:19 +0000 |
|---|---|---|
| committer | PJ Eby <distutils-sig@python.org> | 2005-08-22 03:50:19 +0000 |
| commit | ba116dd30edfaf0e2feabaa01e0adb643235743a (patch) | |
| tree | 1a61f51079c67008b131ca6e368939ee3b12b603 /ez_setup.py | |
| parent | 369ee0017f5a20b63f3f503196988ef5f111aa08 (diff) | |
| download | python-setuptools-git-ba116dd30edfaf0e2feabaa01e0adb643235743a.tar.gz | |
Bump release version to 0.6a1. Fix a minor cosmetic issue on certain
ez_setup installs.
--HG--
branch : setuptools
extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/trunk/setuptools%4041224
Diffstat (limited to 'ez_setup.py')
| -rwxr-xr-x | ez_setup.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ez_setup.py b/ez_setup.py index d6786c1e..e6c07f67 100755 --- a/ez_setup.py +++ b/ez_setup.py @@ -13,7 +13,7 @@ the appropriate options to ``use_setuptools()``. This file can also be run as a script to install or upgrade setuptools. """ -DEFAULT_VERSION = "0.6a0" +DEFAULT_VERSION = "0.6a1" DEFAULT_URL = "http://www.python.org/packages/source/s/setuptools/" md5_data = { @@ -150,7 +150,7 @@ def main(argv, version=DEFAULT_VERSION): from setuptools.command.easy_install import main except ImportError: from easy_install import main - main(list(argv)+[download_setuptools()]) + main(list(argv)+[download_setuptools(delay=0)]) sys.exit(0) # try to force an exit else: if argv: |
