Skip to content

Commit

Permalink
Stop using wheel as an unconditional build dep
Browse files Browse the repository at this point in the history
It used to be an incorrect recommendation in some of the upstream docs. `setuptools` auto-injects it when building wheels and it's unnecessary when building sdist.
  • Loading branch information
webknjaz authored and WyattBlue committed Jan 26, 2024
1 parent 1962443 commit 5f730da
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
@@ -1,5 +1,5 @@
[build-system]
requires = ["setuptools", "wheel", "cython"]
requires = ["setuptools", "cython"]

[tool.isort]
default_section = "THIRDPARTY"
Expand Down

0 comments on commit 5f730da

Please sign in to comment.