Skip to content
This repository has been archived by the owner on Nov 3, 2023. It is now read-only.

Commit

Permalink
Remove redundant wheel dependency from pyproject.toml
Browse files Browse the repository at this point in the history
Remove the redundant `wheel` dependency from pyproject.toml.  All
setuptools version automatically expose the dependency via the PEP517
backend since day one.  Listing it explicitly in build requirements
was a documentation mistake that was fixed in:
pypa/setuptools@f7d30a9
  • Loading branch information
mgorny authored and maxbachmann committed Jun 6, 2022
1 parent 52da7fe commit 01012a8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ This package provides the C-API of RapidFuzz. It can be used inside the `pyproje

```toml
[build-system]
requires = ["wheel", "setuptools", "rapidfuzz_capi==1.0.5"]
requires = ["setuptools", "rapidfuzz_capi==1.0.5"]
```

Similar to numpy the include path can be found in the following way:
Expand Down
3 changes: 1 addition & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
[build-system]
requires = [
"setuptools",
"wheel"
]
build-backend = "setuptools.build_meta"
build-backend = "setuptools.build_meta"

0 comments on commit 01012a8

Please sign in to comment.