From 1374459c9088725e022beab418bced96a825baad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Langa?= Date: Wed, 6 Oct 2021 00:16:30 +0200 Subject: [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 --- Lib/ensurepip/__init__.py | 8 ++------ Lib/ensurepip/_bundled/pip-21.2.3-py3-none-any.whl | Bin 1563443 -> 0 bytes Lib/ensurepip/_bundled/pip-21.2.4-py3-none-any.whl | Bin 0 -> 1555100 bytes .../_bundled/setuptools-57.4.0-py3-none-any.whl | Bin 819017 -> 0 bytes .../_bundled/setuptools-58.1.0-py3-none-any.whl | Bin 0 -> 816725 bytes .../Library/2021-10-01-23-07-02.bpo-45343.ixmctD.rst | 1 + 6 files changed, 3 insertions(+), 6 deletions(-) delete mode 100644 Lib/ensurepip/_bundled/pip-21.2.3-py3-none-any.whl create mode 100644 Lib/ensurepip/_bundled/pip-21.2.4-py3-none-any.whl delete mode 100644 Lib/ensurepip/_bundled/setuptools-57.4.0-py3-none-any.whl create mode 100644 Lib/ensurepip/_bundled/setuptools-58.1.0-py3-none-any.whl create mode 100644 Misc/NEWS.d/next/Library/2021-10-01-23-07-02.bpo-45343.ixmctD.rst diff --git a/Lib/ensurepip/__init__.py b/Lib/ensurepip/__init__.py index 7b03970..2a140a2 100644 --- a/Lib/ensurepip/__init__.py +++ b/Lib/ensurepip/__init__.py @@ -11,12 +11,8 @@ from . import _bundled __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 d417df6..0000000 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 0000000..46d3012 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-57.4.0-py3-none-any.whl deleted file mode 100644 index af8f8ba..0000000 Binary files a/Lib/ensurepip/_bundled/setuptools-57.4.0-py3-none-any.whl and /dev/null differ diff --git a/Lib/ensurepip/_bundled/setuptools-58.1.0-py3-none-any.whl b/Lib/ensurepip/_bundled/setuptools-58.1.0-py3-none-any.whl new file mode 100644 index 0000000..18c8c22 Binary files /dev/null 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 0000000..8dac4e6 --- /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 -- cgit v0.12