From 26539cea8ad3256f5385268a1a70847f64b1865d Mon Sep 17 00:00:00 2001 From: Tzu-ping Chung Date: Mon, 9 Aug 2021 22:46:15 +0800 Subject: [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 --- Lib/ensurepip/__init__.py | 4 ++-- Lib/ensurepip/_bundled/pip-21.1.3-py3-none-any.whl | Bin 1548027 -> 0 bytes Lib/ensurepip/_bundled/pip-21.2.3-py3-none-any.whl | Bin 0 -> 1563443 bytes .../_bundled/setuptools-56.0.0-py3-none-any.whl | Bin 784941 -> 0 bytes .../_bundled/setuptools-57.4.0-py3-none-any.whl | Bin 0 -> 819017 bytes .../Library/2021-08-06-19-15-52.bpo-44581.oFDBTB.rst | 1 + 6 files changed, 3 insertions(+), 2 deletions(-) delete mode 100644 Lib/ensurepip/_bundled/pip-21.1.3-py3-none-any.whl create mode 100644 Lib/ensurepip/_bundled/pip-21.2.3-py3-none-any.whl delete mode 100644 Lib/ensurepip/_bundled/setuptools-56.0.0-py3-none-any.whl create mode 100644 Lib/ensurepip/_bundled/setuptools-57.4.0-py3-none-any.whl create mode 100644 Misc/NEWS.d/next/Library/2021-08-06-19-15-52.bpo-44581.oFDBTB.rst diff --git a/Lib/ensurepip/__init__.py b/Lib/ensurepip/__init__.py index 14a3903..7b03970 100644 --- a/Lib/ensurepip/__init__.py +++ b/Lib/ensurepip/__init__.py @@ -13,9 +13,9 @@ from . import _bundled __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 d96a40a..0000000 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 0000000..d417df6 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-56.0.0-py3-none-any.whl deleted file mode 100644 index 264ef10..0000000 Binary files a/Lib/ensurepip/_bundled/setuptools-56.0.0-py3-none-any.whl and /dev/null differ diff --git a/Lib/ensurepip/_bundled/setuptools-57.4.0-py3-none-any.whl b/Lib/ensurepip/_bundled/setuptools-57.4.0-py3-none-any.whl new file mode 100644 index 0000000..af8f8ba Binary files /dev/null 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 0000000..99f0806 --- /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 -- cgit v0.12