Commit 7db2fdc1 authored by Tres Seaver's avatar Tres Seaver

Update the URL used to fetch 'ez_setup.py'

Use the official, non-version-pinned version.
parent ac21cc55
Change History Change History
************** **************
Unreleased
==========
- Updated the URL used to fetch ``ez_setup.py`` to the official, non-version-
pinned version.
2.2.0 (2013-07-05) 2.2.0 (2013-07-05)
================== ==================
......
...@@ -75,8 +75,8 @@ except ImportError: ...@@ -75,8 +75,8 @@ except ImportError:
except ImportError: except ImportError:
from urllib2 import urlopen from urllib2 import urlopen
# XXX use a more permanent ez_setup.py URL when available. exec(urlopen(
exec(urlopen('https://bitbucket.org/pypa/setuptools/raw/0.7.2/ez_setup.py' 'https://bitbucket.org/pypa/setuptools/raw/bootstrap/ez_setup.py'
).read(), ez) ).read(), ez)
setup_args = dict(to_dir=tmpeggs, download_delay=0) setup_args = dict(to_dir=tmpeggs, download_delay=0)
ez['use_setuptools'](**setup_args) ez['use_setuptools'](**setup_args)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment