From 93b8efaec91f2e812df89b6604c171d12c8f2f43 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= Date: Fri, 6 May 2022 10:02:51 +0200 Subject: [PATCH] Remove redudant `wheel` dep from `pyproject.toml` The `setuptools` PEP517 backend provides the dependency on `wheel` implicitly. The explicit dep is unnecessary and specifying it is no longer the recommended practice per setuptools documentation. --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 2dc6c29..2bc8d11 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,5 +1,5 @@ [build-system] -requires = ["setuptools >=42", "setuptools_scm[toml] >=3.4.1", "wheel"] +requires = ["setuptools >=42", "setuptools_scm[toml] >=3.4.1"] build-backend = "setuptools.build_meta" [tool.setuptools_scm]