From f928049a5fe8f3b9612561af8443c5d193e04031 Mon Sep 17 00:00:00 2001 From: Laurent Goderre Date: Mon, 4 Dec 2023 09:58:26 -0500 Subject: [PATCH] Update bundled pip version to 23.3.1 * Update bundled pip version to 23.3.1 * Fixes CVE-2023-5752 --- Lib/ensurepip/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/ensurepip/__init__.py b/Lib/ensurepip/__init__.py index 1fb1d505cfd0c5..21e4ad99a39628 100644 --- a/Lib/ensurepip/__init__.py +++ b/Lib/ensurepip/__init__.py @@ -10,7 +10,7 @@ __all__ = ["version", "bootstrap"] _PACKAGE_NAMES = ('pip',) -_PIP_VERSION = "23.2.1" +_PIP_VERSION = "23.3.1" _PROJECTS = [ ("pip", _PIP_VERSION, "py3"), ]