Merge "Trivial: Update pypi url to new url"

This commit is contained in:
Zuul 2018-04-21 05:46:48 +00:00 committed by Gerrit Code Review
commit 3176586927
3 changed files with 3 additions and 3 deletions

View File

@ -27,7 +27,7 @@ import pkg_resources
try:
PYPI_LOCATION = os.environ['PYPI_LOCATION']
except KeyError:
PYPI_LOCATION = 'http://pypi.python.org/pypi'
PYPI_LOCATION = 'http://pypi.org/project'
KEEP_KEYS = frozenset([

View File

@ -20,7 +20,7 @@ import pkg_resources
import requests
_url_template = 'https://pypi.python.org/pypi/{dist}/{version}/json'
_url_template = 'https://pypi.org/project/{dist}/{version}/json'
def _get_metadata(dist, version):

View File

@ -94,7 +94,7 @@ def get_releases_for_package(name, since):
our purposes.
"""
f = urlreq.urlopen("http://pypi.python.org/pypi/%s/json" % name)
f = urlreq.urlopen("http://pypi.org/project/%s/json" % name)
jsondata = f.read()
data = json.loads(jsondata)
releases = []