diff options
author | Tarek Ziade <tarek@ziade.org> | 2011-08-20 12:02:34 +0200 |
---|---|---|
committer | Tarek Ziade <tarek@ziade.org> | 2011-08-20 12:02:34 +0200 |
commit | b11523cfc567b2be5d0a56b954541d747bced9fe (patch) | |
tree | f00fb94a0365167bd2689feaaf8e407e88b259fe | |
parent | aad36d610b0d3b9778e1fe53fd3a1aefe5da2e71 (diff) | |
download | external_python_setuptools-b11523cfc567b2be5d0a56b954541d747bced9fe.tar.gz external_python_setuptools-b11523cfc567b2be5d0a56b954541d747bced9fe.tar.bz2 external_python_setuptools-b11523cfc567b2be5d0a56b954541d747bced9fe.zip |
starting 0.6.22 dev
--HG--
branch : distribute
extra : rebase_source : 14a38f62c8faf493b64102b7e21244048edea5be
-rw-r--r-- | CHANGES.txt | 6 | ||||
-rwxr-xr-x | README.txt | 6 | ||||
-rw-r--r-- | distribute.egg-info/entry_points.txt | 2 | ||||
-rw-r--r-- | distribute_setup.py | 2 | ||||
-rwxr-xr-x | release.sh | 2 | ||||
-rwxr-xr-x | setup.py | 2 |
6 files changed, 13 insertions, 7 deletions
diff --git a/CHANGES.txt b/CHANGES.txt index 9d2b4f54..3f13a3f6 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -3,6 +3,12 @@ CHANGES ======= ------ +0.6.22 +------ + +* ADD STUFF HERE + +------ 0.6.21 ------ @@ -99,9 +99,9 @@ Source installation Download the source tarball, uncompress it, then run the install command:: - $ curl -O http://pypi.python.org/packages/source/d/distribute/distribute-0.6.21.tar.gz - $ tar -xzvf distribute-0.6.21.tar.gz - $ cd distribute-0.6.21 + $ curl -O http://pypi.python.org/packages/source/d/distribute/distribute-0.6.22.tar.gz + $ tar -xzvf distribute-0.6.22.tar.gz + $ cd distribute-0.6.22 $ python setup.py install --------------------------- diff --git a/distribute.egg-info/entry_points.txt b/distribute.egg-info/entry_points.txt index 9fd41758..1c9f123d 100644 --- a/distribute.egg-info/entry_points.txt +++ b/distribute.egg-info/entry_points.txt @@ -32,7 +32,7 @@ depends.txt = setuptools.command.egg_info:warn_depends_obsolete [console_scripts] easy_install = setuptools.command.easy_install:main -easy_install-2.7 = 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/distribute_setup.py b/distribute_setup.py index 5a95c927..2ee0f124 100644 --- a/distribute_setup.py +++ b/distribute_setup.py @@ -46,7 +46,7 @@ except ImportError: args = [quote(arg) for arg in args] return os.spawnl(os.P_WAIT, sys.executable, *args) == 0 -DEFAULT_VERSION = "0.6.21" +DEFAULT_VERSION = "0.6.22" DEFAULT_URL = "http://pypi.python.org/packages/source/d/distribute/" SETUPTOOLS_FAKED_VERSION = "0.6c11" @@ -1,5 +1,5 @@ #!/bin/sh -export VERSION="0.6.21" +export VERSION="0.6.22" # tagging hg tag $VERSION @@ -37,7 +37,7 @@ init_path = convert_path('setuptools/command/__init__.py') exec(open(init_path).read(), d) SETUP_COMMANDS = d['__all__'] -VERSION = "0.6.21" +VERSION = "0.6.22" from setuptools import setup, find_packages from setuptools.command.build_py import build_py as _build_py |