From: Michał Górny Date: Thu, 14 Sep 2023 22:43:34 +0000 (+0200) Subject: Remove redundant wheel dep from pyproject.toml (#496) X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=cf814b7adaebb0d336e863d834964b3f4b4e48e1;p=pyelftools.git Remove redundant wheel dep from pyproject.toml (#496) 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 --- diff --git a/pyproject.toml b/pyproject.toml index f87c03a..b3491a3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,3 +1,3 @@ [build-system] -requires = ["setuptools >= 46.4.0", "wheel"] +requires = ["setuptools >= 46.4.0"] build-backend = "setuptools.build_meta"