Skip to content

Commit fc82f3f

Browse files
authored
[3.8] bpo-43930: Update bundled pip to 21.1 and setuptools to 56.0.0 (GH-25576) (GH-25579)
Update bundled pip to 21.1 and setuptools to 56.0.0. (cherry picked from commit 1969835) Co-authored-by: Stéphane Bidoul <[email protected]>
1 parent e92d110 commit fc82f3f

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

Lib/ensurepip/__init__.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,13 @@
99

1010
__all__ = ["version", "bootstrap"]
1111

12+
_SETUPTOOLS_VERSION = "56.0.0"
1213

13-
_SETUPTOOLS_VERSION = "49.2.1"
14-
15-
_PIP_VERSION = "20.2.3"
14+
_PIP_VERSION = "21.1"
1615

1716
_PROJECTS = [
1817
("setuptools", _SETUPTOOLS_VERSION, "py3"),
19-
("pip", _PIP_VERSION, "py2.py3"),
18+
("pip", _PIP_VERSION, "py3"),
2019
]
2120

2221

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Update bundled pip to 21.1 and setuptools to 56.0.0

0 commit comments

Comments
 (0)