diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2013-11-24 15:00:15 -0500 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2013-11-24 15:00:15 -0500 |
commit | dbe5fff6e83e67c7249c38ab4bde5d70e80e5ad0 (patch) | |
tree | 7bd004ed70974f6cf512768a1d27275388a110be /ez_setup.py | |
parent | 1e811c32250676cc83e79e4063d5420eb72a8f83 (diff) | |
download | external_python_setuptools-dbe5fff6e83e67c7249c38ab4bde5d70e80e5ad0.tar.gz external_python_setuptools-dbe5fff6e83e67c7249c38ab4bde5d70e80e5ad0.tar.bz2 external_python_setuptools-dbe5fff6e83e67c7249c38ab4bde5d70e80e5ad0.zip |
Drop support for Python 2.5 and Python 2.4. Fixes #41.
Diffstat (limited to 'ez_setup.py')
-rw-r--r-- | ez_setup.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ez_setup.py b/ez_setup.py index 9dc2c872..a6f48158 100644 --- a/ez_setup.py +++ b/ez_setup.py @@ -29,7 +29,7 @@ try: except ImportError: USER_SITE = None -DEFAULT_VERSION = "1.4.2" +DEFAULT_VERSION = "2.0" DEFAULT_URL = "https://pypi.python.org/packages/source/s/setuptools/" def _python_cmd(*args): |