python3-scipy: relax version restriction on pybind11

This commit is contained in:
Andrew J. Hesford 2024-04-01 10:32:13 -04:00
parent 38a4ee50ac
commit 62b8446eab
1 changed files with 13 additions and 0 deletions

View File

@ -0,0 +1,13 @@
SciPy imposes strict and unnecessary version restrictions on its dependencies.
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -12,7 +12,7 @@
requires = [
"meson-python>=0.15.0,<0.16.0", # working with 0.15.x series at branch time
"Cython>=0.29.35,!=3.0.3,<3.1.0", # when updating version, also update check in meson.build
- "pybind11>=2.10.4,<2.12.0", # working with 2.11.x series at branch time
+ "pybind11",
"pythran>=0.15.0,<0.16.0", # working with 0.15.x series at branch time
# When numpy 2.0.0rc1 comes out, we should update this to build against 2.0,