[Python-checkins] [3.9] bpo-45343: Update bundled pip to 21.2.4 and setuptools to 58.1.0 (GH-28684) (GH-28747)
ambv
webhook-mailer at python.org
Tue Oct 5 18:16:34 EDT 2021
https://github.com/python/cpython/commit/1374459c9088725e022beab418bced96a825baad
commit: 1374459c9088725e022beab418bced96a825baad
branch: 3.9
author: Łukasz Langa <lukasz at langa.pl>
committer: ambv <lukasz at langa.pl>
date: 2021年10月06日T00:16:30+02:00
summary:
[3.9] bpo-45343: Update bundled pip to 21.2.4 and setuptools to 58.1.0 (GH-28684) (GH-28747)
(cherry picked from commit 4c8d543823dde5a30615da61727837a48f7ab847)
Co-authored-by: Illia Volochii <illia.volochii at gmail.com>
files:
A Lib/ensurepip/_bundled/pip-21.2.4-py3-none-any.whl
A Lib/ensurepip/_bundled/setuptools-58.1.0-py3-none-any.whl
A Misc/NEWS.d/next/Library/2021-10-01-23-07-02.bpo-45343.ixmctD.rst
D Lib/ensurepip/_bundled/pip-21.2.3-py3-none-any.whl
D Lib/ensurepip/_bundled/setuptools-57.4.0-py3-none-any.whl
M Lib/ensurepip/__init__.py
diff --git a/Lib/ensurepip/__init__.py b/Lib/ensurepip/__init__.py
index 7b03970c93ec0..2a140a2624d46 100644
--- a/Lib/ensurepip/__init__.py
+++ b/Lib/ensurepip/__init__.py
@@ -11,12 +11,8 @@
__all__ = ["version", "bootstrap"]
-
-
-_SETUPTOOLS_VERSION = "57.4.0"
-
-_PIP_VERSION = "21.2.3"
-
+_SETUPTOOLS_VERSION = "58.1.0"
+_PIP_VERSION = "21.2.4"
_PROJECTS = [
("setuptools", _SETUPTOOLS_VERSION, "py3"),
("pip", _PIP_VERSION, "py3"),
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
deleted file mode 100644
index d417df63d9ec1..0000000000000
Binary files a/Lib/ensurepip/_bundled/pip-21.2.3-py3-none-any.whl and /dev/null differ
diff --git a/Lib/ensurepip/_bundled/pip-21.2.4-py3-none-any.whl b/Lib/ensurepip/_bundled/pip-21.2.4-py3-none-any.whl
new file mode 100644
index 0000000000000..46d3012c59b17
Binary files /dev/null and b/Lib/ensurepip/_bundled/pip-21.2.4-py3-none-any.whl differ
diff --git a/Lib/ensurepip/_bundled/setuptools-57.4.0-py3-none-any.whl b/Lib/ensurepip/_bundled/setuptools-58.1.0-py3-none-any.whl
similarity index 80%
rename from Lib/ensurepip/_bundled/setuptools-57.4.0-py3-none-any.whl
rename to Lib/ensurepip/_bundled/setuptools-58.1.0-py3-none-any.whl
index af8f8ba21003b..18c8c22958f1f 100644
Binary files a/Lib/ensurepip/_bundled/setuptools-57.4.0-py3-none-any.whl and b/Lib/ensurepip/_bundled/setuptools-58.1.0-py3-none-any.whl differ
diff --git a/Misc/NEWS.d/next/Library/2021-10-01-23-07-02.bpo-45343.ixmctD.rst b/Misc/NEWS.d/next/Library/2021-10-01-23-07-02.bpo-45343.ixmctD.rst
new file mode 100644
index 0000000000000..8dac4e6a25271
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2021-10-01-23-07-02.bpo-45343.ixmctD.rst
@@ -0,0 +1 @@
+Update bundled pip to 21.2.4 and setuptools to 58.1.0
More information about the Python-checkins
mailing list