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.
32 lines
992 B
32 lines
992 B
From f6bb2b93a09f7bd36ca06778d142fd39a02fa6fe Mon Sep 17 00:00:00 2001
|
|
From: =?UTF-8?q?Miro=20Hron=C4=8Dok?= <miro@hroncok.cz>
|
|
Date: Mon, 11 Jan 2021 13:42:43 +0100
|
|
Subject: [PATCH] Allow building with setuptools_scm 4 and 5
|
|
|
|
---
|
|
docs/changelog/1799.misc.rst | 1 +
|
|
pyproject.toml | 2 +-
|
|
2 files changed, 2 insertions(+), 1 deletion(-)
|
|
create mode 100644 docs/changelog/1799.misc.rst
|
|
|
|
diff --git a/docs/changelog/1799.misc.rst b/docs/changelog/1799.misc.rst
|
|
new file mode 100644
|
|
index 000000000..640a93124
|
|
--- /dev/null
|
|
+++ b/docs/changelog/1799.misc.rst
|
|
@@ -0,0 +1 @@
|
|
+Enable building tox with ``setuptools_scm`` 4 and 5 by :user:hroncok
|
|
diff --git a/pyproject.toml b/pyproject.toml
|
|
index 93f95d62c..a57d6c9f6 100644
|
|
--- a/pyproject.toml
|
|
+++ b/pyproject.toml
|
|
@@ -1,7 +1,7 @@
|
|
[build-system]
|
|
requires = [
|
|
"setuptools >= 40.0.4",
|
|
- "setuptools_scm >= 2.0.0, <4",
|
|
+ "setuptools_scm >= 2.0.0, <6",
|
|
"wheel >= 0.29.0",
|
|
]
|
|
build-backend = 'setuptools.build_meta'
|