python-matplotlib/0002-Unpin-NumPy-build-requirement.patch

31 lines
893 B
Diff
Raw Normal View History

2023-11-01 08:17:36 +00:00
From 789bb69a3175c6ecc03449128d72cac63522d98f Mon Sep 17 00:00:00 2001
2023-02-28 03:29:17 +00:00
From: Elliott Sales de Andrade <quantum.analyst@gmail.com>
2023-08-12 00:55:05 +00:00
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.
2023-02-28 03:29:17 +00:00
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
2023-11-01 08:17:36 +00:00
index 7131609c63..e76ec736d7 100644
2023-02-28 03:29:17 +00:00
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -2,7 +2,7 @@
build-backend = "setuptools.build_meta"
requires = [
"certifi>=2020.06.20",
2023-08-12 00:55:05 +00:00
- "numpy>=1.25",
2023-02-28 03:29:17 +00:00
+ "numpy",
"pybind11>=2.6",
2023-11-01 08:17:36 +00:00
"setuptools>=64",
2023-02-28 03:29:17 +00:00
"setuptools_scm>=7",
--
2023-06-22 08:56:24 +00:00
2.41.0
2023-02-28 03:29:17 +00:00