From 9da5215000920870eeddd78af92da4c98099706c Mon Sep 17 00:00:00 2001 From: Paul Moore Date: Tue, 18 Oct 2022 15:48:14 +0100 Subject: gh-98331: Update bundled pip to 22.3 (#98332) --- Lib/ensurepip/__init__.py | 4 ++-- Lib/ensurepip/_bundled/pip-22.2.2-py3-none-any.whl | Bin 2044706 -> 0 bytes Lib/ensurepip/_bundled/pip-22.3-py3-none-any.whl | Bin 0 -> 2051507 bytes .../_bundled/setuptools-63.2.0-py3-none-any.whl | Bin 1228000 -> 0 bytes .../_bundled/setuptools-65.5.0-py3-none-any.whl | Bin 0 -> 1232695 bytes .../2022-10-16-15-31-50.gh-issue-98331.Y5kPOX.rst | 1 + 6 files changed, 3 insertions(+), 2 deletions(-) delete mode 100644 Lib/ensurepip/_bundled/pip-22.2.2-py3-none-any.whl create mode 100644 Lib/ensurepip/_bundled/pip-22.3-py3-none-any.whl delete mode 100644 Lib/ensurepip/_bundled/setuptools-63.2.0-py3-none-any.whl create mode 100644 Lib/ensurepip/_bundled/setuptools-65.5.0-py3-none-any.whl create mode 100644 Misc/NEWS.d/next/Library/2022-10-16-15-31-50.gh-issue-98331.Y5kPOX.rst diff --git a/Lib/ensurepip/__init__.py b/Lib/ensurepip/__init__.py index 33c91801b0..4a6ba9cedf 100644 --- a/Lib/ensurepip/__init__.py +++ b/Lib/ensurepip/__init__.py @@ -10,8 +10,8 @@ from importlib import resources __all__ = ["version", "bootstrap"] _PACKAGE_NAMES = ('setuptools', 'pip') -_SETUPTOOLS_VERSION = "63.2.0" -_PIP_VERSION = "22.2.2" +_SETUPTOOLS_VERSION = "65.5.0" +_PIP_VERSION = "22.3" _PROJECTS = [ ("setuptools", _SETUPTOOLS_VERSION, "py3"), ("pip", _PIP_VERSION, "py3"), diff --git a/Lib/ensurepip/_bundled/pip-22.2.2-py3-none-any.whl b/Lib/ensurepip/_bundled/pip-22.2.2-py3-none-any.whl deleted file mode 100644 index 03099718b0..0000000000 Binary files a/Lib/ensurepip/_bundled/pip-22.2.2-py3-none-any.whl and /dev/null differ diff --git a/Lib/ensurepip/_bundled/pip-22.3-py3-none-any.whl b/Lib/ensurepip/_bundled/pip-22.3-py3-none-any.whl new file mode 100644 index 0000000000..d6fccd9de9 Binary files /dev/null and b/Lib/ensurepip/_bundled/pip-22.3-py3-none-any.whl differ diff --git a/Lib/ensurepip/_bundled/setuptools-63.2.0-py3-none-any.whl b/Lib/ensurepip/_bundled/setuptools-63.2.0-py3-none-any.whl deleted file mode 100644 index e3b5446eb5..0000000000 Binary files a/Lib/ensurepip/_bundled/setuptools-63.2.0-py3-none-any.whl and /dev/null differ diff --git a/Lib/ensurepip/_bundled/setuptools-65.5.0-py3-none-any.whl b/Lib/ensurepip/_bundled/setuptools-65.5.0-py3-none-any.whl new file mode 100644 index 0000000000..123a13e2c6 Binary files /dev/null and b/Lib/ensurepip/_bundled/setuptools-65.5.0-py3-none-any.whl differ diff --git a/Misc/NEWS.d/next/Library/2022-10-16-15-31-50.gh-issue-98331.Y5kPOX.rst b/Misc/NEWS.d/next/Library/2022-10-16-15-31-50.gh-issue-98331.Y5kPOX.rst new file mode 100644 index 0000000000..b4cf94310a --- /dev/null +++ b/Misc/NEWS.d/next/Library/2022-10-16-15-31-50.gh-issue-98331.Y5kPOX.rst @@ -0,0 +1 @@ +Update the bundled copies of pip and setuptools to versions 22.3 and 65.5.0 respectively. -- cgit v1.2.1