Skip to content

Commit 299f611

Browse files
committed
Use ensurepip to install dependencies for wheel builds.
1 parent 3ee9f54 commit 299f611

File tree

5 files changed

+5
-3
lines changed

5 files changed

+5
-3
lines changed

Lib/ensurepip/__init__.py

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

1010

1111
__all__ = ["version", "bootstrap"]
12-
_PACKAGE_NAMES = ('setuptools', 'pip')
13-
_SETUPTOOLS_VERSION = "65.5.0"
14-
_PIP_VERSION = "23.2.1"
12+
_PACKAGE_NAMES = ('setuptools', 'pip', 'wheel')
13+
_SETUPTOOLS_VERSION = "69.0.3"
14+
_PIP_VERSION = "23.3.2"
15+
_WHEEL_VERSION = "0.42.0"
1516
_PROJECTS = [
1617
("setuptools", _SETUPTOOLS_VERSION, "py3"),
1718
("pip", _PIP_VERSION, "py3"),
19+
("wheel", _WHEEL_VERSION, "py3"),
1820
]
1921

2022
# Packages bundled in ensurepip._bundled have wheel_name set.
Binary file not shown.
Binary file not shown.
Binary file not shown.

0 commit comments

Comments
 (0)