diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2014-08-10 14:50:14 -0400 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2014-08-10 14:50:14 -0400 |
commit | f4ff967301bdd5f33631d2650baad9776baa4c10 (patch) | |
tree | c5853b2254bf475ddd843086f7ff17bda018a550 | |
parent | 19a627c768b7c0a155beea2fce0bb0f4c98c3959 (diff) | |
download | external_python_setuptools-f4ff967301bdd5f33631d2650baad9776baa4c10.tar.gz external_python_setuptools-f4ff967301bdd5f33631d2650baad9776baa4c10.tar.bz2 external_python_setuptools-f4ff967301bdd5f33631d2650baad9776baa4c10.zip |
Bumped to 5.6 in preparation for next release.
-rw-r--r-- | ez_setup.py | 2 | ||||
-rw-r--r-- | setuptools.egg-info/entry_points.txt | 1 | ||||
-rw-r--r-- | setuptools/version.py | 2 |
3 files changed, 3 insertions, 2 deletions
diff --git a/ez_setup.py b/ez_setup.py index 3f98bd07..4b9eee61 100644 --- a/ez_setup.py +++ b/ez_setup.py @@ -36,7 +36,7 @@ try: except ImportError: USER_SITE = None -DEFAULT_VERSION = "5.5" +DEFAULT_VERSION = "5.6" DEFAULT_URL = "https://pypi.python.org/packages/source/s/setuptools/" def _python_cmd(*args): diff --git a/setuptools.egg-info/entry_points.txt b/setuptools.egg-info/entry_points.txt index de842da8..df4ac2ae 100644 --- a/setuptools.egg-info/entry_points.txt +++ b/setuptools.egg-info/entry_points.txt @@ -36,6 +36,7 @@ install_requires = setuptools.dist:check_requirements namespace_packages = setuptools.dist:check_nsp package_data = setuptools.dist:check_package_data packages = setuptools.dist:check_packages +setup_reqires = setuptools.dist:check_requirements test_loader = setuptools.dist:check_importable test_runner = setuptools.dist:check_importable test_suite = setuptools.dist:check_test_suite diff --git a/setuptools/version.py b/setuptools/version.py index 773d9307..49e04a62 100644 --- a/setuptools/version.py +++ b/setuptools/version.py @@ -1 +1 @@ -__version__ = '5.5' +__version__ = '5.6' |