From 71490012d358367f84f5b2f7185a781e54d4cc39 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= Date: Mon, 6 Jun 2022 08:48:56 +0200 Subject: [PATCH] Remove redundant `wheel` dependency from pyproject.toml (#220) Remove the redundant `wheel` dependency from pyproject.toml. All setuptools version automatically expose the dependency via the PEP517 backend since day one. Listing it explicitly in build requirements was a documentation mistake that was fixed in: https://github.com/pypa/setuptools/commit/f7d30a9529378cf69054b5176249e5457aaf640a --- pyproject.toml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 2c93bdd..3f46c01 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,6 @@ [build-system] requires = [ "setuptools>=42", - "wheel", "scikit-build>=0.13.0", "cmake", "ninja; platform_system!='Windows'", @@ -9,4 +8,4 @@ requires = [ "Cython==3.0.0a10", "rapidfuzz_capi==1.0.5" ] -build-backend = "setuptools.build_meta" \ No newline at end of file +build-backend = "setuptools.build_meta"