From 60c413988af50d5776a2544d9e7f30aefe934a89 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= Date: Thu, 26 May 2022 08:51:26 +0200 Subject: [PATCH] Remove redundant wheel dep from pyproject.toml The `wheel` dependency is added automatically by setuptools build backend (since day one) and therefore should not be specified explicitly. Listing it in documentation was a historical mistake and has been corrected since. See: https://github.com/pypa/setuptools/commit/f7d30a9529378cf69054b5176249e5457aaf640a --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 85e9eca2..8c870eb5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,5 +1,5 @@ [build-system] -requires = ["setuptools", "wheel"] +requires = ["setuptools"] build-backend = "setuptools.build_meta"