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