python-matplotlib/0002-Unpin-NumPy-build-requirement.patch
2023-11-01 04:17:36 -04:00

31 lines
893 B
Diff

From 789bb69a3175c6ecc03449128d72cac63522d98f Mon Sep 17 00:00:00 2001
From: Elliott Sales de Andrade <quantum.analyst@gmail.com>
Date: Fri, 11 Aug 2023 02:36:06 -0400
Subject: [PATCH 2/5] Unpin NumPy build requirement
This is so high simply to take advantage of the new
backwards-compatibility guarantee in NumPy 1.25, but Fedora will never
run against a version different from the one it was built against.
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 7131609c63..e76ec736d7 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -2,7 +2,7 @@
build-backend = "setuptools.build_meta"
requires = [
"certifi>=2020.06.20",
- "numpy>=1.25",
+ "numpy",
"pybind11>=2.6",
"setuptools>=64",
"setuptools_scm>=7",
--
2.41.0