From 6268ab11456fba063c1e8ffe7d506fe2ab807dd8 Mon Sep 17 00:00:00 2001 From: Waylan Limberg Date: Tue, 1 Aug 2023 09:15:02 -0400 Subject: [PATCH] Remove redundant wheel dep from pyproject.toml Apparently, the wheel dependency is redundant as setuptools will always ensure wheel is installed. In fact, the documentation has been updated to reflect that in pypa/setuptools@f7d30a9. --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 66fc30b4..89990f2c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [build-system] # Minimum requirements for the build system to execute. -requires = ["setuptools>=61.2", "wheel"] +requires = ["setuptools>=61.2"] build-backend = "setuptools.build_meta" [project]