Blame SOURCES/a91c0935.patch

aa255a
From a91c09353a9d222178fc0e37f496aa0e6fbacc3f Mon Sep 17 00:00:00 2001
aa255a
From: =?UTF-8?q?Miro=20Hron=C4=8Dok?= <miro@hroncok.cz>
aa255a
Date: Tue, 30 Mar 2021 11:46:11 +0200
aa255a
Subject: [PATCH] Allow building with setuptools_scm 6+
aa255a
aa255a
Once again a new setuptools_scm version is available, 6.
aa255a
Lets' not change this to <7 again but allow any future version.
aa255a
If it breaks in the future, we can adapt.
aa255a
---
aa255a
 pyproject.toml | 2 +-
aa255a
 1 file changed, 1 insertion(+), 1 deletion(-)
aa255a
aa255a
diff --git a/pyproject.toml b/pyproject.toml
aa255a
index a57d6c9f6..6aa5a1b15 100644
aa255a
--- a/pyproject.toml
aa255a
+++ b/pyproject.toml
aa255a
@@ -1,7 +1,7 @@
aa255a
 [build-system]
aa255a
 requires = [
aa255a
     "setuptools >= 40.0.4",
aa255a
-    "setuptools_scm >= 2.0.0, <6",
aa255a
+    "setuptools_scm >= 2.0.0",
aa255a
     "wheel >= 0.29.0",
aa255a
 ]
aa255a
 build-backend = 'setuptools.build_meta'