]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
bpo-43077: Update bundled pip to 21.0.1 and setuptools to 52.0.0 (GH-24386)
authorPaul Moore <p.f.moore@gmail.com>
Sat, 30 Jan 2021 16:42:36 +0000 (16:42 +0000)
committerGitHub <noreply@github.com>
Sat, 30 Jan 2021 16:42:36 +0000 (16:42 +0000)
Update bundled pip to 21.0.1 and setuptools to 52.0.0

Lib/ensurepip/__init__.py
Lib/ensurepip/_bundled/pip-20.2.3-py2.py3-none-any.whl [deleted file]
Lib/ensurepip/_bundled/pip-21.0.1-py3-none-any.whl [new file with mode: 0644]
Lib/ensurepip/_bundled/setuptools-47.1.0-py3-none-any.whl [deleted file]
Lib/ensurepip/_bundled/setuptools-52.0.0-py3-none-any.whl [new file with mode: 0644]
Misc/NEWS.d/next/Library/2021-01-30-15-20-06.bpo-43077.Owk61z.rst [new file with mode: 0644]

index 2276fd7fd8f3b2342cbf9e52b624ef2031f14a73..74530706be5c70e015d4eb576a320a484465e8bd 100644 (file)
@@ -11,11 +11,11 @@ from importlib import resources
 
 __all__ = ["version", "bootstrap"]
 _PACKAGE_NAMES = ('setuptools', 'pip')
-_SETUPTOOLS_VERSION = "47.1.0"
-_PIP_VERSION = "20.2.3"
+_SETUPTOOLS_VERSION = "52.0.0"
+_PIP_VERSION = "21.0.1"
 _PROJECTS = [
     ("setuptools", _SETUPTOOLS_VERSION, "py3"),
-    ("pip", _PIP_VERSION, "py2.py3"),
+    ("pip", _PIP_VERSION, "py3"),
 ]
 
 # Packages bundled in ensurepip._bundled have wheel_name set.
diff --git a/Lib/ensurepip/_bundled/pip-20.2.3-py2.py3-none-any.whl b/Lib/ensurepip/_bundled/pip-20.2.3-py2.py3-none-any.whl
deleted file mode 100644 (file)
index 7ebdc0f..0000000
Binary files a/Lib/ensurepip/_bundled/pip-20.2.3-py2.py3-none-any.whl and /dev/null differ
diff --git a/Lib/ensurepip/_bundled/pip-21.0.1-py3-none-any.whl b/Lib/ensurepip/_bundled/pip-21.0.1-py3-none-any.whl
new file mode 100644 (file)
index 0000000..6d55137
Binary files /dev/null and b/Lib/ensurepip/_bundled/pip-21.0.1-py3-none-any.whl differ
diff --git a/Lib/ensurepip/_bundled/setuptools-47.1.0-py3-none-any.whl b/Lib/ensurepip/_bundled/setuptools-47.1.0-py3-none-any.whl
deleted file mode 100644 (file)
index f87867f..0000000
Binary files a/Lib/ensurepip/_bundled/setuptools-47.1.0-py3-none-any.whl and /dev/null differ
diff --git a/Lib/ensurepip/_bundled/setuptools-52.0.0-py3-none-any.whl b/Lib/ensurepip/_bundled/setuptools-52.0.0-py3-none-any.whl
new file mode 100644 (file)
index 0000000..9eb776e
Binary files /dev/null and b/Lib/ensurepip/_bundled/setuptools-52.0.0-py3-none-any.whl differ
diff --git a/Misc/NEWS.d/next/Library/2021-01-30-15-20-06.bpo-43077.Owk61z.rst b/Misc/NEWS.d/next/Library/2021-01-30-15-20-06.bpo-43077.Owk61z.rst
new file mode 100644 (file)
index 0000000..e555002
--- /dev/null
@@ -0,0 +1 @@
+Update the bundled pip to 21.0.1 and setuptools to 52.0.0.
\ No newline at end of file