From ab5bfe5299b0fbf6c335d9ef3905dbbc377e5953 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= Date: Wed, 4 May 2022 09:42:39 +0200 Subject: [PATCH] Remove redundant `wheel` dependency from `pyproject.toml` The `wheel` dependency in `pyproject.toml` is not necessary, and modern setuptools documentation advises against adding it. The PEP517 backend automatically exposes the `wheel` dependency, and a future version of setuptools may no longer use it. --- pyproject.toml | 1 - 1 file changed, 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 3b44c906..1dd2e5c1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,7 +3,6 @@ build-backend = "setuptools.build_meta" requires = [ "setuptools>=42", "setuptools_scm[toml]>=3.4", - "wheel", ] [tool.black]