diff options
author | Paul Moore <p.f.moore@gmail.com> | 2022-10-18 15:48:14 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-18 15:48:14 +0100 |
commit | 9da5215000920870eeddd78af92da4c98099706c (patch) | |
tree | b0476f1eb3a0ce676628ed8e36220e34a4e08225 /Lib/ensurepip/__init__.py | |
parent | 2eb503e4dde9c9b0443e799e02d55bc053ef1c64 (diff) | |
download | cpython-git-9da5215000920870eeddd78af92da4c98099706c.tar.gz |
gh-98331: Update bundled pip to 22.3 (#98332)
Diffstat (limited to 'Lib/ensurepip/__init__.py')
-rw-r--r-- | Lib/ensurepip/__init__.py | 4 |
1 files changed, 2 insertions, 2 deletions
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"), |