From: Ned Deily Date: Sun, 13 Mar 2022 20:02:10 +0000 (-0400) Subject: bpo-46986: Upgrade bundled setuptools to 60.9.3 (GH-31820) (GH-31855) X-Git-Tag: v3.9.11~16 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=bda64b3c0c4e45de4c82ba1b8722f56db5ac88ba;p=thirdparty%2FPython%2Fcpython.git bpo-46986: Upgrade bundled setuptools to 60.9.3 (GH-31820) (GH-31855) (cherry picked from commit c99ac3c364ee21be72263791b71ee8b55f64de08) Co-authored-by: Pradyun Gedam --- diff --git a/Lib/ensurepip/__init__.py b/Lib/ensurepip/__init__.py index e510cc7fb2ba..0d76fc9b4aac 100644 --- a/Lib/ensurepip/__init__.py +++ b/Lib/ensurepip/__init__.py @@ -11,7 +11,8 @@ from . import _bundled __all__ = ["version", "bootstrap"] -_SETUPTOOLS_VERSION = "58.1.0" +_PACKAGE_NAMES = ('setuptools', 'pip') +_SETUPTOOLS_VERSION = "60.9.3" _PIP_VERSION = "22.0.4" _PROJECTS = [ ("setuptools", _SETUPTOOLS_VERSION, "py3"), 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 deleted file mode 100644 index 18c8c22958f1..000000000000 Binary files a/Lib/ensurepip/_bundled/setuptools-58.1.0-py3-none-any.whl and /dev/null differ diff --git a/Lib/ensurepip/_bundled/setuptools-60.9.3-py3-none-any.whl b/Lib/ensurepip/_bundled/setuptools-60.9.3-py3-none-any.whl new file mode 100644 index 000000000000..b88ddc659ee1 Binary files /dev/null and b/Lib/ensurepip/_bundled/setuptools-60.9.3-py3-none-any.whl differ diff --git a/Misc/NEWS.d/next/Library/2022-03-11-13-54-27.bpo-46986.nF1meI.rst b/Misc/NEWS.d/next/Library/2022-03-11-13-54-27.bpo-46986.nF1meI.rst new file mode 100644 index 000000000000..06dd1271902d --- /dev/null +++ b/Misc/NEWS.d/next/Library/2022-03-11-13-54-27.bpo-46986.nF1meI.rst @@ -0,0 +1 @@ +Upgrade setuptools wheel bundled with ensurepip (setuptools 60.9.3)