From cf7345aa1291f1ba7db11d95da2a78bbae2f3eb9 Mon Sep 17 00:00:00 2001 From: Omri Sarig Date: Tue, 25 Feb 2025 13:53:52 +0100 Subject: [PATCH] package: Drop setuptools_scm_git_archive requirement The tool of setuptools_scm_git_archive is deprecated. The logic of this package was introduced directly to the setuptools_scm package, since version 7.0.0 of this package. This commit removes the unnecessary requirement to have setuptools_scm_git_archive, and instead, ensures that the setuptools_scm version used is recent enough. --- pyproject.toml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 35488ed..fe76d54 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,8 +1,7 @@ [build-system] requires = [ "setuptools >= 48", - "setuptools_scm[toml]", - "setuptools_scm_git_archive", + "setuptools_scm[toml] >= 7.0.0", "wheel >= 0.29.0", ] build-backend = 'setuptools.build_meta'