diff options
| -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) |
