From 5a8e968c38cc239c07eba15ded439a12818a852f Mon Sep 17 00:00:00 2001 From: Ned Deily Date: Sun, 13 Mar 2022 15:58:02 -0400 Subject: bpo-46985: Upgrade bundled pip to 22.0.4 (GH-31819) (GH-31852) (cherry picked from commit d87f1b787ed38dfd307d82452f2efe9dc5b93942) Co-authored-by: Pradyun Gedam --- Lib/ensurepip/__init__.py | 9 +++------ .../_bundled/pip-20.1.1-py2.py3-none-any.whl | Bin 1490666 -> 0 bytes Lib/ensurepip/_bundled/pip-22.0.4-py3-none-any.whl | Bin 0 -> 2123599 bytes .../Library/2022-03-11-13-34-16.bpo-46985.BgoMr2.rst | 1 + 4 files changed, 4 insertions(+), 6 deletions(-) delete mode 100644 Lib/ensurepip/_bundled/pip-20.1.1-py2.py3-none-any.whl create mode 100644 Lib/ensurepip/_bundled/pip-22.0.4-py3-none-any.whl create mode 100644 Misc/NEWS.d/next/Library/2022-03-11-13-34-16.bpo-46985.BgoMr2.rst diff --git a/Lib/ensurepip/__init__.py b/Lib/ensurepip/__init__.py index 94d40b0..8289c49 100644 --- a/Lib/ensurepip/__init__.py +++ b/Lib/ensurepip/__init__.py @@ -7,15 +7,12 @@ import tempfile __all__ = ["version", "bootstrap"] - - +_PACKAGE_NAMES = ('setuptools', 'pip') _SETUPTOOLS_VERSION = "47.1.0" - -_PIP_VERSION = "20.1.1" - +_PIP_VERSION = "22.0.4" _PROJECTS = [ ("setuptools", _SETUPTOOLS_VERSION, "py3"), - ("pip", _PIP_VERSION, "py2.py3"), + ("pip", _PIP_VERSION, "py3"), ] diff --git a/Lib/ensurepip/_bundled/pip-20.1.1-py2.py3-none-any.whl b/Lib/ensurepip/_bundled/pip-20.1.1-py2.py3-none-any.whl deleted file mode 100644 index ea1d0f7..0000000 Binary files a/Lib/ensurepip/_bundled/pip-20.1.1-py2.py3-none-any.whl and /dev/null differ diff --git a/Lib/ensurepip/_bundled/pip-22.0.4-py3-none-any.whl b/Lib/ensurepip/_bundled/pip-22.0.4-py3-none-any.whl new file mode 100644 index 0000000..7ba048e Binary files /dev/null and b/Lib/ensurepip/_bundled/pip-22.0.4-py3-none-any.whl differ diff --git a/Misc/NEWS.d/next/Library/2022-03-11-13-34-16.bpo-46985.BgoMr2.rst b/Misc/NEWS.d/next/Library/2022-03-11-13-34-16.bpo-46985.BgoMr2.rst new file mode 100644 index 0000000..2e08ee8 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2022-03-11-13-34-16.bpo-46985.BgoMr2.rst @@ -0,0 +1 @@ +Upgrade pip wheel bundled with ensurepip (pip 22.0.4) -- cgit v0.12