summaryrefslogtreecommitdiffstats
path: root/Tools
diff options
context:
space:
mode:
authorNed Deily <nad@python.org>2018-06-11 04:45:50 (GMT)
committerGitHub <noreply@github.com>2018-06-11 04:45:50 (GMT)
commit9d6d06e8065d45f375f4a80e2d7e13b032da1f5b (patch)
treeb4c2043a8f0b508476bddd79f3887e3447acb64c /Tools
parent12c6cdf4d16078aa09de32a39193c8161177b39d (diff)
downloadcpython-9d6d06e8065d45f375f4a80e2d7e13b032da1f5b.zip
cpython-9d6d06e8065d45f375f4a80e2d7e13b032da1f5b.tar.gz
cpython-9d6d06e8065d45f375f4a80e2d7e13b032da1f5b.tar.bz2
pypi.python.org -> pypi.org (GH-7613)
Diffstat (limited to 'Tools')
-rwxr-xr-xTools/scripts/checkpip.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Tools/scripts/checkpip.py b/Tools/scripts/checkpip.py
index 8a64eda..a4a9ddf 100755
--- a/Tools/scripts/checkpip.py
+++ b/Tools/scripts/checkpip.py
@@ -14,7 +14,7 @@ def main():
for project, version in ensurepip._PROJECTS:
data = json.loads(urllib.request.urlopen(
- "https://pypi.python.org/pypi/{}/json".format(project),
+ "https://pypi.org/pypi/{}/json".format(project),
cadefault=True,
).read().decode("utf8"))
upstream_version = data["info"]["version"]