[Python-checkins] [3.9] Upgrade bundled pip and setuptools (GH-27625) (GH-27658)

ambv webhook-mailer at python.org
Mon Aug 9 10:46:24 EDT 2021


https://github.com/python/cpython/commit/26539cea8ad3256f5385268a1a70847f64b1865d
commit: 26539cea8ad3256f5385268a1a70847f64b1865d
branch: 3.9
author: Tzu-ping Chung <uranusjr at gmail.com>
committer: ambv <lukasz at langa.pl>
date: 2021-08-09T16:46:15+02:00
summary:

[3.9] Upgrade bundled pip and setuptools (GH-27625) (GH-27658)

pip is now 21.2.3
setuptools is now 57.4.0.
(cherry picked from commit 738ac00a08cb6a9d104ec85ccb1a44c2399d6baa)

Co-authored-by: Tzu-ping Chung <uranusjr at gmail.com>

files:
A Lib/ensurepip/_bundled/pip-21.2.3-py3-none-any.whl
A Lib/ensurepip/_bundled/setuptools-57.4.0-py3-none-any.whl
A Misc/NEWS.d/next/Library/2021-08-06-19-15-52.bpo-44581.oFDBTB.rst
D Lib/ensurepip/_bundled/pip-21.1.3-py3-none-any.whl
D Lib/ensurepip/_bundled/setuptools-56.0.0-py3-none-any.whl
M Lib/ensurepip/__init__.py

diff --git a/Lib/ensurepip/__init__.py b/Lib/ensurepip/__init__.py
index 14a39037e0c771..7b03970c93ec07 100644
--- a/Lib/ensurepip/__init__.py
+++ b/Lib/ensurepip/__init__.py
@@ -13,9 +13,9 @@
 __all__ = ["version", "bootstrap"]
 
 
-_SETUPTOOLS_VERSION = "56.0.0"
+_SETUPTOOLS_VERSION = "57.4.0"
 
-_PIP_VERSION = "21.1.3"
+_PIP_VERSION = "21.2.3"
 
 _PROJECTS = [
     ("setuptools", _SETUPTOOLS_VERSION, "py3"),
diff --git a/Lib/ensurepip/_bundled/pip-21.1.3-py3-none-any.whl b/Lib/ensurepip/_bundled/pip-21.1.3-py3-none-any.whl
deleted file mode 100644
index d96a40a9291fb2..00000000000000
Binary files a/Lib/ensurepip/_bundled/pip-21.1.3-py3-none-any.whl and /dev/null differ
diff --git a/Lib/ensurepip/_bundled/pip-21.2.3-py3-none-any.whl b/Lib/ensurepip/_bundled/pip-21.2.3-py3-none-any.whl
new file mode 100644
index 00000000000000..d417df63d9ec19
Binary files /dev/null and b/Lib/ensurepip/_bundled/pip-21.2.3-py3-none-any.whl differ
diff --git a/Lib/ensurepip/_bundled/setuptools-56.0.0-py3-none-any.whl b/Lib/ensurepip/_bundled/setuptools-57.4.0-py3-none-any.whl
similarity index 65%
rename from Lib/ensurepip/_bundled/setuptools-56.0.0-py3-none-any.whl
rename to Lib/ensurepip/_bundled/setuptools-57.4.0-py3-none-any.whl
index 264ef10e826679..af8f8ba21003b1 100644
Binary files a/Lib/ensurepip/_bundled/setuptools-56.0.0-py3-none-any.whl and b/Lib/ensurepip/_bundled/setuptools-57.4.0-py3-none-any.whl differ
diff --git a/Misc/NEWS.d/next/Library/2021-08-06-19-15-52.bpo-44581.oFDBTB.rst b/Misc/NEWS.d/next/Library/2021-08-06-19-15-52.bpo-44581.oFDBTB.rst
new file mode 100644
index 00000000000000..99f08065b9d2f0
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2021-08-06-19-15-52.bpo-44581.oFDBTB.rst
@@ -0,0 +1 @@
+Upgrade bundled pip to 21.2.3 and setuptools to 57.4.0



More information about the Python-checkins mailing list