From 4af3dff8da6d71fad18fabca638c727ce73dc427 Mon Sep 17 00:00:00 2001 From: Eric Joanis Date: Wed, 11 Dec 2024 10:36:02 -0500 Subject: [PATCH] build: setuptools_scm requires setuptools>=61 --- pyproject.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 73942c4..eb28d06 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,8 @@ [build-system] requires = [ "scikit-build-core", - "Cython" + "Cython", + "setuptools>=61.2", ] build-backend = "scikit_build_core.build"