Skip to content

Commit

Permalink
fix: Drop wheel from direct build dependencies (#175)
Browse files Browse the repository at this point in the history
It was never necessary. In the past, `setuptools` would pull it in through the PEP 517 hook, only when building the wheels. During PyCon 2024, though, `wheel` moved into the `setuptools`' codebase and so it's always bundled now, in the modern versions.
  • Loading branch information
webknjaz authored Nov 6, 2024
1 parent 5542968 commit d680ac6
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 @@ -40,7 +40,7 @@ release = [
]

[build-system]
requires = ['setuptools>=62', 'wheel']
requires = ["setuptools >= 62"]
build-backend = "setuptools.build_meta"

[tool.setuptools]
Expand Down

0 comments on commit d680ac6

Please sign in to comment.