[Python-checkins] [3.8] bpo-43930: Update bundled pip to 21.1 and setuptools to 56.0.0 (GH-25576) (GH-25579)

pfmoore webhook-mailer at python.org
Sat Apr 24 18:28:59 EDT 2021


https://github.com/python/cpython/commit/fc82f3f8fb36f88a4e7238a463812c2916bd4db0
commit: fc82f3f8fb36f88a4e7238a463812c2916bd4db0
branch: 3.8
author: Stéphane Bidoul <stephane.bidoul at acsone.eu>
committer: pfmoore <p.f.moore at gmail.com>
date: 2021-04-24T23:28:55+01:00
summary:

[3.8] bpo-43930: Update bundled pip to 21.1 and setuptools to 56.0.0 (GH-25576) (GH-25579)

Update bundled pip to 21.1 and setuptools to 56.0.0.
(cherry picked from commit 196983563d05e32d2dcf217e955a919f9e0c25e1)

Co-authored-by: Stéphane Bidoul <stephane.bidoul at acsone.eu>

files:
A Lib/ensurepip/_bundled/pip-21.1-py3-none-any.whl
A Lib/ensurepip/_bundled/setuptools-56.0.0-py3-none-any.whl
A Misc/NEWS.d/next/Library/2021-04-24-14-23-07.bpo-43930.R7ah0m.rst
D Lib/ensurepip/_bundled/pip-20.2.3-py2.py3-none-any.whl
D Lib/ensurepip/_bundled/setuptools-49.2.1-py3-none-any.whl
M Lib/ensurepip/__init__.py

diff --git a/Lib/ensurepip/__init__.py b/Lib/ensurepip/__init__.py
index 38bb42104b550f..d77987011d3a8b 100644
--- a/Lib/ensurepip/__init__.py
+++ b/Lib/ensurepip/__init__.py
@@ -9,14 +9,13 @@
 
 __all__ = ["version", "bootstrap"]
 
+_SETUPTOOLS_VERSION = "56.0.0"
 
-_SETUPTOOLS_VERSION = "49.2.1"
-
-_PIP_VERSION = "20.2.3"
+_PIP_VERSION = "21.1"
 
 _PROJECTS = [
     ("setuptools", _SETUPTOOLS_VERSION, "py3"),
-    ("pip", _PIP_VERSION, "py2.py3"),
+    ("pip", _PIP_VERSION, "py3"),
 ]
 
 
diff --git a/Lib/ensurepip/_bundled/pip-20.2.3-py2.py3-none-any.whl b/Lib/ensurepip/_bundled/pip-21.1-py3-none-any.whl
similarity index 51%
rename from Lib/ensurepip/_bundled/pip-20.2.3-py2.py3-none-any.whl
rename to Lib/ensurepip/_bundled/pip-21.1-py3-none-any.whl
index 7ebdc0f31d4e3e..59395be72f135f 100644
Binary files a/Lib/ensurepip/_bundled/pip-20.2.3-py2.py3-none-any.whl and b/Lib/ensurepip/_bundled/pip-21.1-py3-none-any.whl differ
diff --git a/Lib/ensurepip/_bundled/setuptools-49.2.1-py3-none-any.whl b/Lib/ensurepip/_bundled/setuptools-56.0.0-py3-none-any.whl
similarity index 66%
rename from Lib/ensurepip/_bundled/setuptools-49.2.1-py3-none-any.whl
rename to Lib/ensurepip/_bundled/setuptools-56.0.0-py3-none-any.whl
index 308e2f2ed5ed9b..264ef10e826679 100644
Binary files a/Lib/ensurepip/_bundled/setuptools-49.2.1-py3-none-any.whl and b/Lib/ensurepip/_bundled/setuptools-56.0.0-py3-none-any.whl differ
diff --git a/Misc/NEWS.d/next/Library/2021-04-24-14-23-07.bpo-43930.R7ah0m.rst b/Misc/NEWS.d/next/Library/2021-04-24-14-23-07.bpo-43930.R7ah0m.rst
new file mode 100644
index 00000000000000..7dac21f3d9b197
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2021-04-24-14-23-07.bpo-43930.R7ah0m.rst
@@ -0,0 +1 @@
+Update bundled pip to 21.1 and setuptools to 56.0.0
\ No newline at end of file



More information about the Python-checkins mailing list