Skip to content

Commit

Permalink
MNT: Apply repo-review rule PP003
Browse files Browse the repository at this point in the history
PP003: Does not list wheel as a build-dep

Do not include `"wheel"` in your `build-system.requires`, setuptools does
this via PEP 517 already. Setuptools will also only require this for actual
wheel builds, and might have version limits.
  • Loading branch information
DimitriPapadopoulos committed Sep 23, 2024
1 parent 0f36ab9 commit cf21cad
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 >= 30.3.0", "wheel"]
requires = ["setuptools >= 30.3.0"]
build-backend = "setuptools.build_meta"

[tool.black]
Expand Down

0 comments on commit cf21cad

Please sign in to comment.