diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2022-07-24 11:43:05 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-24 11:43:05 (GMT) |
commit | 6d332a6cfa371cdb45c180b3da72d491569b2b02 (patch) | |
tree | a1ad8e58a62d4c83b0ea70ea3a5600629abe11a1 /Lib/ensurepip/__init__.py | |
parent | 227a1973d5eba9d0cf2119f63b48f36dbba9e179 (diff) | |
download | cpython-6d332a6cfa371cdb45c180b3da72d491569b2b02.zip cpython-6d332a6cfa371cdb45c180b3da72d491569b2b02.tar.gz cpython-6d332a6cfa371cdb45c180b3da72d491569b2b02.tar.bz2 |
gh-95199: upgrade bundled setuptools to 63.2.0 (gh-95200)
(cherry picked from commit 3c94d3395edbcd299cbdacd09660ed88e654eeef)
Co-authored-by: Stéphane Bidoul <stephane.bidoul@gmail.com>
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 0f1483d..189cfb2 100644 --- a/Lib/ensurepip/__init__.py +++ b/Lib/ensurepip/__init__.py @@ -11,7 +11,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"), |