From 1b07f72cf213be528db307d1e0e98ba3d60c1802 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= Date: Wed, 9 Nov 2022 08:42:53 +0100 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 --- CHANGES/362.misc | 1 + pyproject.toml | 1 - 2 files changed, 1 insertion(+), 1 deletion(-) create mode 100644 CHANGES/362.misc diff --git a/CHANGES/362.misc b/CHANGES/362.misc new file mode 100644 index 0000000..0278ac8 --- /dev/null +++ b/CHANGES/362.misc @@ -0,0 +1 @@ +Removed unnecessary explicit requirement of `wheel` package from `pyproject.toml`. diff --git a/pyproject.toml b/pyproject.toml index 4219d05..a4cde72 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,6 @@ [build-system] requires = [ "setuptools>=51.0", - "wheel>=0.36", ] build-backend = "setuptools.build_meta"