Remove redundant wheel dep from pyproject.toml (#496)
authorMichał Górny <mgorny@gentoo.org>
Thu, 14 Sep 2023 22:43:34 +0000 (00:43 +0200)
committerGitHub <noreply@github.com>
Thu, 14 Sep 2023 22:43:34 +0000 (15:43 -0700)
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

pyproject.toml

index f87c03a9861a25e37a79583f5293b8de98520647..b3491a3aa2e08d05981d40d8272c0174764d3209 100644 (file)
@@ -1,3 +1,3 @@
 [build-system]
-requires = ["setuptools >= 46.4.0", "wheel"]
+requires = ["setuptools >= 46.4.0"]
 build-backend = "setuptools.build_meta"