From 0b7d243b3deb960dbfaf40cf196fb02e752fe552 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= Date: Thu, 10 Nov 2022 19:52:10 +0100 Subject: [PATCH] Remove redundant wheel dep from pyproject.toml (#362) 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"