blob: 09a28855ec92ff390780788165c0bec06ca0a1a2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
allow any setuptools version to be used
also fix FTBFS due to requiring a later version of setuptools
---
pyproject.toml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/pyproject.toml b/pyproject.toml
index 650168a7888..2c51cf94a81 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -1,5 +1,5 @@
[build-system]
-requires = ["setuptools==78.1.1"]
+requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
|