From 73acc2e73fe6db963e7f7dafbfbfa0fdd34a5987 Mon Sep 17 00:00:00 2001 From: Leo Singer Date: Fri, 26 Jul 2024 10:43:09 -0400 Subject: [PATCH] Drop wheel from build system requirements The latest documentation from setuptools does not say that this is a recommended or required dependency. --- pyproject.toml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 0889579c..254fa99b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,5 +1,4 @@ [build-system] requires = ["setuptools", - "setuptools_scm", - "wheel"] + "setuptools_scm"] build-backend = 'setuptools.build_meta'