From fc81bdffa7d59e01b7dde664dcd143073da4e8c7 Mon Sep 17 00:00:00 2001 From: Elliott Sales de Andrade Date: Sat, 25 Apr 2026 03:24:11 -0400 Subject: [PATCH] BLD: Unpin setuptools-scm again The upstream issue https://github.com/pypa/setuptools-scm/issues/1314 was fixed some time ago. --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index f3c38512a2c9..cf12da6455a9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -61,7 +61,7 @@ requires = [ # you really need it and aren't using an sdist. "meson-python>=0.13.2,!=0.17.*", "pybind11>=2.13.2,!=2.13.3", - "setuptools_scm>=7,<10", + "setuptools_scm>=7", ] [dependency-groups] @@ -80,7 +80,7 @@ build = [ # Should be the same as `[build-system] requires` above. "meson-python>=0.13.1,!=0.17.*", "pybind11>=2.13.2,!=2.13.3", - "setuptools_scm>=7,<10", + "setuptools_scm>=7", # Not required by us but setuptools_scm without a version, so _if_ # installed, then setuptools_scm 8 requires at least this version. # Unfortunately, we can't do a sort of minimum-if-installed dependency, so