summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPradyun Gedam <pradyunsg@gmail.com>2023-02-05 11:30:44 (GMT)
committerGitHub <noreply@github.com>2023-02-05 11:30:44 (GMT)
commit19ac43629e6fd73f2dbf9fd5a0b97d791c28acc7 (patch)
treec251637dd580947b2ccbf5c1d03cc12f072006e1
parent39017e04b55d4c110787551dc9a0cb753f27d700 (diff)
downloadcpython-19ac43629e6fd73f2dbf9fd5a0b97d791c28acc7.zip
cpython-19ac43629e6fd73f2dbf9fd5a0b97d791c28acc7.tar.gz
cpython-19ac43629e6fd73f2dbf9fd5a0b97d791c28acc7.tar.bz2
gh-101570: Update bundled pip version to 23.0 (#101571)
Update bundled pip version to 23.0 This is the current latest version of `pip`. --------- Co-authored-by: Pradyun Gedam <pradyunsg@users.noreply.github.com> Co-authored-by: blurb-it[bot] <43283697+blurb-it[bot]@users.noreply.github.com>
-rw-r--r--Lib/ensurepip/__init__.py2
-rw-r--r--Lib/ensurepip/_bundled/pip-23.0-py3-none-any.whl (renamed from Lib/ensurepip/_bundled/pip-22.3.1-py3-none-any.whl)bin2051534 -> 2056044 bytes
-rw-r--r--Misc/NEWS.d/next/Library/2023-02-04-21-01-49.gh-issue-101570.lbtUsD.rst1
3 files changed, 2 insertions, 1 deletions
diff --git a/Lib/ensurepip/__init__.py b/Lib/ensurepip/__init__.py
index 1a2f57c..052b7bc 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 = "65.5.0"
-_PIP_VERSION = "22.3.1"
+_PIP_VERSION = "23.0"
_PROJECTS = [
("setuptools", _SETUPTOOLS_VERSION, "py3"),
("pip", _PIP_VERSION, "py3"),
diff --git a/Lib/ensurepip/_bundled/pip-22.3.1-py3-none-any.whl b/Lib/ensurepip/_bundled/pip-23.0-py3-none-any.whl
index c5b7753..bb9aebf 100644
--- a/Lib/ensurepip/_bundled/pip-22.3.1-py3-none-any.whl
+++ b/Lib/ensurepip/_bundled/pip-23.0-py3-none-any.whl
Binary files differ
diff --git a/Misc/NEWS.d/next/Library/2023-02-04-21-01-49.gh-issue-101570.lbtUsD.rst b/Misc/NEWS.d/next/Library/2023-02-04-21-01-49.gh-issue-101570.lbtUsD.rst
new file mode 100644
index 0000000..599edab
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2023-02-04-21-01-49.gh-issue-101570.lbtUsD.rst
@@ -0,0 +1 @@
+Upgrade pip wheel bundled with ensurepip (pip 23.0)