diff options
author | Stéphane Bidoul <stephane.bidoul@gmail.com> | 2022-07-24 13:01:03 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-24 12:01:03 +0100 |
commit | 3c94d3395edbcd299cbdacd09660ed88e654eeef (patch) | |
tree | e380886401300e2725314232d0da1cc95dfb3372 /Lib/ensurepip/__init__.py | |
parent | 068ffafa5465e9388a940692d1720266a1b37257 (diff) | |
download | cpython-git-3c94d3395edbcd299cbdacd09660ed88e654eeef.tar.gz |
gh-95199: upgrade bundled setuptools to 63.2.0 (gh-95200)
Diffstat (limited to 'Lib/ensurepip/__init__.py')
-rw-r--r-- | Lib/ensurepip/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/ensurepip/__init__.py b/Lib/ensurepip/__init__.py index c4d116ea12..d88387398e 100644 --- a/Lib/ensurepip/__init__.py +++ b/Lib/ensurepip/__init__.py @@ -10,7 +10,7 @@ from importlib import resources __all__ = ["version", "bootstrap"] _PACKAGE_NAMES = ('setuptools', 'pip') -_SETUPTOOLS_VERSION = "58.1.0" +_SETUPTOOLS_VERSION = "63.2.0" _PIP_VERSION = "22.2" _PROJECTS = [ ("setuptools", _SETUPTOOLS_VERSION, "py3"), |