aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xEasyInstall.txt2
-rwxr-xr-xez_setup.py4
-rwxr-xr-xsetup.py2
-rw-r--r--setuptools/__init__.py2
4 files changed, 5 insertions, 5 deletions
diff --git a/EasyInstall.txt b/EasyInstall.txt
index e5e495ce..84f30a63 100755
--- a/EasyInstall.txt
+++ b/EasyInstall.txt
@@ -77,7 +77,7 @@ version, and automatically downloading, building, and installing it::
**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.6a0"
+ easy_install -f http://peak.telecommunity.com/dist "setuptools>=0.6a1"
**Example 3**. Download a source distribution from a specified URL,
automatically building and installing it::
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:
diff --git a/setup.py b/setup.py
index 038c86fe..cea8d918 100755
--- a/setup.py
+++ b/setup.py
@@ -15,7 +15,7 @@ def get_description():
f.close()
return ''.join(lines)
-VERSION = "0.6a0"
+VERSION = "0.6a1"
from setuptools import setup, find_packages
import sys
diff --git a/setuptools/__init__.py b/setuptools/__init__.py
index eeb2975b..cb0ccba9 100644
--- a/setuptools/__init__.py
+++ b/setuptools/__init__.py
@@ -7,7 +7,7 @@ from distutils.core import Command as _Command
from distutils.util import convert_path
import os.path
-__version__ = '0.6a0'
+__version__ = '0.6a1'
__all__ = [
'setup', 'Distribution', 'Feature', 'Command', 'Extension', 'Require',
'find_packages'