aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew J. Hesford <ajh@sideband.org>2024-04-01 14:32:13 +0000
committerAndrew J. Hesford <ajh@sideband.org>2024-04-01 15:35:15 +0000
commit62b8446eab48c2a91701c4c0ab14dcffd1b13db7 (patch)
tree5521e1130ee8727c7fc6b80de4ea8558eddbbe12
parent38a4ee50ac13ec497e74b90c8aac127ab1afea40 (diff)
downloadvoid-packages-62b8446eab48c2a91701c4c0ab14dcffd1b13db7.tar
void-packages-62b8446eab48c2a91701c4c0ab14dcffd1b13db7.tar.gz
void-packages-62b8446eab48c2a91701c4c0ab14dcffd1b13db7.tar.bz2
void-packages-62b8446eab48c2a91701c4c0ab14dcffd1b13db7.tar.lz
void-packages-62b8446eab48c2a91701c4c0ab14dcffd1b13db7.tar.xz
void-packages-62b8446eab48c2a91701c4c0ab14dcffd1b13db7.tar.zst
void-packages-62b8446eab48c2a91701c4c0ab14dcffd1b13db7.zip
python3-scipy: relax version restriction on pybind11
-rw-r--r--srcpkgs/python3-scipy/patches/version-relaxation.patch13
1 files changed, 13 insertions, 0 deletions
diff --git a/srcpkgs/python3-scipy/patches/version-relaxation.patch b/srcpkgs/python3-scipy/patches/version-relaxation.patch
new file mode 100644
index 00000000000..b9959ec47f3
--- /dev/null
+++ b/srcpkgs/python3-scipy/patches/version-relaxation.patch
@@ -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,