From ba398f85a3fbeb68a2fd48d3a39504ece4cac78a Mon Sep 17 00:00:00 2001 From: Yaakov Selkowitz Date: Fri, 25 Jul 2025 16:49:12 -0400 Subject: [PATCH] python: do not require wheel for building Setuptools 70.1+ does not need wheel at all; older versions would fetch wheel when building wheels (but not sdists). --- python/pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/pyproject.toml b/python/pyproject.toml index 580a4c7..637b0e6 100644 --- a/python/pyproject.toml +++ b/python/pyproject.toml @@ -1,5 +1,5 @@ [build-system] -requires = ["setuptools", "cffi", "wheel"] +requires = ["setuptools", "cffi"] build-backend = "setuptools.build_meta" [project]