diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2016-10-29 22:35:17 -0400 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2016-10-29 22:35:17 -0400 |
commit | 107a253e31134f1c824cf82680ab69d83e3ddbd2 (patch) | |
tree | c49fa25ffc5f9ebbf3e4a04d7af7c796283a2043 | |
parent | b18391c74e190b99cc358997f30907a5c4d78b00 (diff) | |
download | external_python_setuptools-107a253e31134f1c824cf82680ab69d83e3ddbd2.tar.gz external_python_setuptools-107a253e31134f1c824cf82680ab69d83e3ddbd2.tar.bz2 external_python_setuptools-107a253e31134f1c824cf82680ab69d83e3ddbd2.zip |
Update PyPI root for dependency links. Fixes #827.
-rw-r--r-- | CHANGES.rst | 2 | ||||
-rwxr-xr-x | setup.py | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/CHANGES.rst b/CHANGES.rst index 2011b3ca..3ef933e5 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -5,6 +5,8 @@ CHANGES v28.7.1 ------- +* #827: Update PyPI root for dependency links. + * #833: Backed out changes from #830 as the implementation seems to have problems in some cases. @@ -77,7 +77,7 @@ def pypi_link(pkg_filename): Given the filename, including md5 fragment, construct the dependency link for PyPI. """ - root = 'https://pypi.python.org/packages/source' + root = 'https://files.pythonhosted.org/packages/source' name, sep, rest = pkg_filename.partition('-') parts = root, name[0], name, pkg_filename return '/'.join(parts) |