Skip to content

Commit

Permalink
Apply Repo-Review suggestion
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 Dec 25, 2023
1 parent b54af26 commit d65fb70
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,6 +1,6 @@
# pyproject.toml
[build-system]
requires = ["setuptools>=45", "wheel", "setuptools_scm[toml]>=6.0"]
requires = ["setuptools>=45", "setuptools_scm[toml]>=6.0"]
build-backend = "setuptools.build_meta"

[tool.setuptools_scm]
Expand Down

0 comments on commit d65fb70

Please sign in to comment.