From: Miro HronĨok Date: Mon, 28 Jul 2025 11:33:52 +0000 (+0200) Subject: Do not require wheel for building X-Git-Url: http://git.ipfire.org/gitweb/gitweb.cgi?a=commitdiff_plain;h=0916d643f9fccf4969b2b640133e2e32983a5a88;p=thirdparty%2Ftornado.git Do not require wheel for building - 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) --- diff --git a/pyproject.toml b/pyproject.toml index 7d657f43..96c8172f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,5 +1,5 @@ [build-system] -requires = ["setuptools", "wheel"] +requires = ["setuptools"] build-backend = "setuptools.build_meta" [tool.black]