You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
1.4 KiB
42 lines
1.4 KiB
1 month ago
|
From 9421754530479435e21a98d2f549330899ed8d85 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 | 13 +------------
|
||
|
1 file changed, 1 insertion(+), 12 deletions(-)
|
||
|
|
||
|
diff --git a/pyproject.toml b/pyproject.toml
|
||
|
index aa6aa23506..1894bbf3cd 100644
|
||
|
--- a/pyproject.toml
|
||
|
+++ b/pyproject.toml
|
||
|
@@ -76,18 +76,7 @@ requires = [
|
||
|
"meson-python>=0.13.1,<0.17.0",
|
||
|
"pybind11>=2.6,!=2.13.3",
|
||
|
"setuptools_scm>=7",
|
||
|
-
|
||
|
- # Comments on numpy build requirement range:
|
||
|
- #
|
||
|
- # 1. >=2.0.x is the numpy requirement for wheel builds for distribution
|
||
|
- # on PyPI - building against 2.x yields wheels that are also
|
||
|
- # ABI-compatible with numpy 1.x at runtime.
|
||
|
- # 2. 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.
|
||
|
- # 3. The <2.3 upper bound is for matching the numpy deprecation policy,
|
||
|
- # it should not be loosened.
|
||
|
- "numpy>=2.0.0rc1,<2.3",
|
||
|
+ "numpy",
|
||
|
]
|
||
|
|
||
|
[tool.meson-python.args]
|
||
|
--
|
||
|
2.47.0
|
||
|
|