]> git.ipfire.org Git - thirdparty/tornado.git/commitdiff
Do not require wheel for building 3524/head
authorMiro Hrončok <miro@hroncok.cz>
Mon, 28 Jul 2025 11:33:52 +0000 (13:33 +0200)
committerGitHub <noreply@github.com>
Mon, 28 Jul 2025 11:33:52 +0000 (13:33 +0200)
 - current version of setuptools (70.1+) does not need wheel at all
 - older versions of setuptools would fetch wheel when building wheels (but not sdists)

pyproject.toml

index 7d657f437f5263fb22de137013970c526de4aa1a..96c8172f2fc827acdc770d1345f778e8bdbd4b22 100644 (file)
@@ -1,5 +1,5 @@
 [build-system]
-requires = ["setuptools", "wheel"]
+requires = ["setuptools"]
 build-backend = "setuptools.build_meta"
 
 [tool.black]