From fc921054ea7ab9f6388e58e6586b4e249e488428 Mon Sep 17 00:00:00 2001 From: DownerCase Date: Tue, 12 Mar 2024 14:26:03 +0000 Subject: [PATCH] fix: Restrict setuptools_scm version --- pyproject.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index c9de9e03dc..4b3a7e97aa 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -17,7 +17,8 @@ dynamic = ["version"] "Source" = "https://github.com/eclipse-ecal/ecal" [build-system] # How pip and other frontends should build this project -requires = ["scikit-build-core>=0.8", "setuptools_scm>=7"] +# Version 8 of setuptools_scm drops Python 3.7 +requires = ["scikit-build-core>=0.8", "setuptools_scm~=7.1"] build-backend = "scikit_build_core.build" [tool.setuptools_scm]