summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2022-10-01 17:01:57 +0200
committerNed Batchelder <ned@nedbatchelder.com>2022-10-01 10:22:42 -0700
commit08712e99bbfff973cca786aab04875b79c4e0fba (patch)
tree0fafe01edffcb20a2812b2a0b191037096c0b1a7
parentad1c59c4b238c8695148355bbb677f2d5f4c2f31 (diff)
downloadpython-coveragepy-git-08712e99bbfff973cca786aab04875b79c4e0fba.tar.gz
build: remove redundant wheel dep from pyproject.toml
Remove the redundant `wheel` dependency, as it is added by the backend automatically. Listing it explicitly in the documentation was a historical mistake and has been fixed since, see: https://github.com/pypa/setuptools/commit/f7d30a9529378cf69054b5176249e5457aaf640a
-rw-r--r--pyproject.toml2
1 files changed, 1 insertions, 1 deletions
diff --git a/pyproject.toml b/pyproject.toml
index fdc329bb..4b13c41f 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -2,5 +2,5 @@
# For details: https://github.com/nedbat/coveragepy/blob/master/NOTICE.txt
[build-system]
-requires = ['setuptools', 'wheel']
+requires = ['setuptools']
build-backend = 'setuptools.build_meta'