1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
From: Antonio Valentino <antonio.valentino@tiscali.it>
Date: Wed, 17 Apr 2024 06:47:05 +0000
Subject: Compatibility with numpy<2.0
Forwarded: not-needed
---
pyproject.toml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/pyproject.toml b/pyproject.toml
index 1152b73..59b58eb 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -1,5 +1,5 @@
[build-system]
-requires = ["setuptools", "wheel", "numpy>=2.0.0rc1,<2.3", "Cython>=3", "versioneer[toml]"]
+requires = ["setuptools", "wheel", "numpy<2.3", "Cython>=3", "versioneer[toml]"]
build-backend = "setuptools.build_meta"
[tool.ruff]
|