Skip to content

Commit

Permalink
Stop explicitly listing wheel as a build dependency
Browse files Browse the repository at this point in the history
setuptools' get_requires_for_build_wheel() hook already injects this dependency
when building wheels is requested.

See also 64d8938.
  • Loading branch information
hroncok committed May 24, 2024
1 parent fb71f4c commit 411a0c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ Changelog = "https://pip.pypa.io/en/stable/news/"

[build-system]
# The lower bound is for <https:/pypa/setuptools/issues/3865>.
requires = ["setuptools>=67.6.1", "wheel"]
requires = ["setuptools>=67.6.1"]
build-backend = "setuptools.build_meta"

[tool.setuptools]
Expand Down

0 comments on commit 411a0c7

Please sign in to comment.