diff options
author | Stéphane Bidoul <stephane.bidoul@gmail.com> | 2022-07-24 11:55:25 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-24 10:55:25 +0100 |
commit | 068ffafa5465e9388a940692d1720266a1b37257 (patch) | |
tree | ed3c50c53de8a8b9701e1d8163dd8d568deec151 | |
parent | 8184f0fce3b734413e3d3a282f1425d3cb8507fd (diff) | |
download | cpython-git-068ffafa5465e9388a940692d1720266a1b37257.tar.gz |
gh-95194: upgrade bundled pip to 22.2 (gh-95195)
upgrade bundled pip to 22.2
-rw-r--r-- | Lib/ensurepip/__init__.py | 2 | ||||
-rw-r--r-- | Lib/ensurepip/_bundled/pip-22.0.4-py3-none-any.whl | bin | 2123599 -> 0 bytes | |||
-rw-r--r-- | Lib/ensurepip/_bundled/pip-22.2-py3-none-any.whl | bin | 0 -> 2044396 bytes | |||
-rw-r--r-- | Misc/NEWS.d/next/Library/2022-07-24-09-15-35.gh-issue-95194.ERVmqG.rst | 1 |
4 files changed, 2 insertions, 1 deletions
diff --git a/Lib/ensurepip/__init__.py b/Lib/ensurepip/__init__.py index 1f25825f3f..c4d116ea12 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" -_PIP_VERSION = "22.0.4" +_PIP_VERSION = "22.2" _PROJECTS = [ ("setuptools", _SETUPTOOLS_VERSION, "py3"), ("pip", _PIP_VERSION, "py3"), diff --git a/Lib/ensurepip/_bundled/pip-22.0.4-py3-none-any.whl b/Lib/ensurepip/_bundled/pip-22.0.4-py3-none-any.whl Binary files differdeleted file mode 100644 index 7ba048e245..0000000000 --- a/Lib/ensurepip/_bundled/pip-22.0.4-py3-none-any.whl +++ /dev/null diff --git a/Lib/ensurepip/_bundled/pip-22.2-py3-none-any.whl b/Lib/ensurepip/_bundled/pip-22.2-py3-none-any.whl Binary files differnew file mode 100644 index 0000000000..9c43960aaf --- /dev/null +++ b/Lib/ensurepip/_bundled/pip-22.2-py3-none-any.whl diff --git a/Misc/NEWS.d/next/Library/2022-07-24-09-15-35.gh-issue-95194.ERVmqG.rst b/Misc/NEWS.d/next/Library/2022-07-24-09-15-35.gh-issue-95194.ERVmqG.rst new file mode 100644 index 0000000000..c69651923b --- /dev/null +++ b/Misc/NEWS.d/next/Library/2022-07-24-09-15-35.gh-issue-95194.ERVmqG.rst @@ -0,0 +1 @@ +Upgrade bundled pip to 22.2. |