aboutsummaryrefslogtreecommitdiffstats
path: root/setup.py
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2016-10-29 22:35:17 -0400
committerJason R. Coombs <jaraco@jaraco.com>2016-10-29 22:35:17 -0400
commit107a253e31134f1c824cf82680ab69d83e3ddbd2 (patch)
treec49fa25ffc5f9ebbf3e4a04d7af7c796283a2043 /setup.py
parentb18391c74e190b99cc358997f30907a5c4d78b00 (diff)
downloadexternal_python_setuptools-107a253e31134f1c824cf82680ab69d83e3ddbd2.tar.gz
external_python_setuptools-107a253e31134f1c824cf82680ab69d83e3ddbd2.tar.bz2
external_python_setuptools-107a253e31134f1c824cf82680ab69d83e3ddbd2.zip
Update PyPI root for dependency links. Fixes #827.
Diffstat (limited to 'setup.py')
-rwxr-xr-xsetup.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index 265cdb30..12cbbe8c 100755
--- a/setup.py
+++ b/setup.py
@@ -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)