From d56fb2435df5121bfe9c88a6143365737d284082 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= Date: Sun, 2 Jul 2023 04:13:02 +0200 Subject: [PATCH] Remove redundant wheel dep from pyproject.toml 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 While Pillow uses a custom backend that modifies the `bdist_wheel` method, it does not import `wheel` or use it in a way that would rely on setuptools implementation details. --- pyproject.toml | 1 - 1 file changed, 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 93a43360891..fd9c05f9277 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -2,7 +2,6 @@ build-backend = "backend" requires = [ "setuptools>=67.8", - "wheel", ] backend-path = [ "_custom_build",