From 56862c03cbb3f9cae3464c33390fbbaf8a91823a Mon Sep 17 00:00:00 2001 From: Ran Benita Date: Mon, 15 Aug 2022 19:41:57 +0300 Subject: [PATCH] pyproject.toml: remove `wheel` from `build-system.requires` It's not required -- see https://github.com/pypa/packaging.python.org/pull/1050 --- pyproject.toml | 1 - 1 file changed, 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 3d683aebe..a66f90017 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,7 +3,6 @@ requires = [ # sync with setup.py until we discard non-pep-517/518 "setuptools>=45.0", "setuptools-scm[toml]>=6.2.3", - "wheel", ] build-backend = "setuptools.build_meta"