File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change
1
+ ``wheel `` is no longer explicitly listed as a build depepndency of ``pip ``.
2
+ ``setuptools `` already injects this dependency in the ``get_requires_for_build_wheel() `` hook.
3
+ This makes no difference for users of ``pip ``.
4
+ This makes no difference when building wheels of ``pip ``.
5
+ This avoids an unnecessary dependency on ``wheel `` wehn bulding the source distribution of ``pip ``.
Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ Changelog = "https://pip.pypa.io/en/stable/news/"
41
41
42
42
[build-system ]
43
43
# The lower bound is for <https://github.com/pypa/setuptools/issues/3865>.
44
- requires = [" setuptools>=67.6.1" , " wheel " ]
44
+ requires = [" setuptools>=67.6.1" ]
45
45
build-backend = " setuptools.build_meta"
46
46
47
47
[tool .setuptools ]
You can’t perform that action at this time.
0 commit comments