Commit 107a253e authored by Jason R. Coombs's avatar Jason R. Coombs

Update PyPI root for dependency links. Fixes #827.

parent b18391c7
......@@ -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)
......
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