From 0916d643f9fccf4969b2b640133e2e32983a5a88 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Miro=20Hron=C4=8Dok?= Date: Mon, 28 Jul 2025 13:33:52 +0200 Subject: [PATCH] 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) --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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] -- 2.47.2