We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fb71f4c commit bd3c51dCopy full SHA for bd3c51d
news/12728.feature.rst
@@ -0,0 +1,5 @@
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``.
pyproject.toml
@@ -41,7 +41,7 @@ Changelog = "https://pip.pypa.io/en/stable/news/"
41
42
[build-system]
43
# The lower bound is for <https://github.com/pypa/setuptools/issues/3865>.
44
-requires = ["setuptools>=67.6.1", "wheel"]
+requires = ["setuptools>=67.6.1"]
45
build-backend = "setuptools.build_meta"
46
47
[tool.setuptools]
0 commit comments