From 1d053fec4b32deb8a2b0f8deb979c4e35897acfd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= Date: Sat, 8 Oct 2022 09:31:40 +0200 Subject: [PATCH] Remove redundant wheel dep from pyproject.toml MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Remove the redundant `wheel` dependency, as it is added by the backend automatically. Listing it explicitly in the documentation was a historical mistake and has been fixed since, see: https://github.com/pypa/setuptools/commit/f7d30a9529378cf69054b5176249e5457aaf640a Signed-off-by: Michał Górny --- pyproject.toml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 0bea47b3..9db4899e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -2,5 +2,4 @@ build-backend = 'setuptools.build_meta' requires = [ 'setuptools >= 46.4.0', - 'wheel' -] \ No newline at end of file +]