26 lines
825 B
Diff
26 lines
825 B
Diff
From e3a61e272d5ab58a2b8f13c6ad05d1136d3a5ecc Mon Sep 17 00:00:00 2001
|
|
From: Elliott Sales de Andrade <quantum.analyst@gmail.com>
|
|
Date: Thu, 25 Apr 2024 16:35:29 -0400
|
|
Subject: [PATCH 1/2] Reduce numpy build dependency
|
|
|
|
Signed-off-by: Elliott Sales de Andrade <quantum.analyst@gmail.com>
|
|
---
|
|
pyproject.toml | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/pyproject.toml b/pyproject.toml
|
|
index f0172aac..4e012ede 100644
|
|
--- a/pyproject.toml
|
|
+++ b/pyproject.toml
|
|
@@ -9,7 +9,7 @@ requires = [
|
|
# Note that building against numpy 1.x works fine too - users and
|
|
# redistributors can do this by installing the numpy version they like and
|
|
# disabling build isolation.
|
|
- "numpy>=2.0.0",
|
|
+ "numpy>=1.23",
|
|
"setuptools_scm >= 8.0.0",
|
|
]
|
|
build-backend = "setuptools.build_meta"
|
|
--
|
|
2.50.0
|
|
|