From d680ac67a413fe40d4692d84c74b2cbc676d7fa6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sviatoslav=20Sydorenko=20=28=D0=A1=D0=B2=D1=8F=D1=82=D0=BE?= =?UTF-8?q?=D1=81=D0=BB=D0=B0=D0=B2=20=D0=A1=D0=B8=D0=B4=D0=BE=D1=80=D0=B5?= =?UTF-8?q?=D0=BD=D0=BA=D0=BE=29?= Date: Wed, 6 Nov 2024 01:31:10 +0100 Subject: [PATCH] fix: Drop `wheel` from direct build dependencies (#175) It was never necessary. In the past, `setuptools` would pull it in through the PEP 517 hook, only when building the wheels. During PyCon 2024, though, `wheel` moved into the `setuptools`' codebase and so it's always bundled now, in the modern versions. --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 3622199..b09c555 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -40,7 +40,7 @@ release = [ ] [build-system] -requires = ['setuptools>=62', 'wheel'] +requires = ["setuptools >= 62"] build-backend = "setuptools.build_meta" [tool.setuptools]