Skip to content

Commit 8b12ed5

Browse files
authored
Merge pull request kivy#3311 from lazycat11/fix-scipy-pybind11-meson
Fix SciPy pybind11 build dependency
2 parents f4a40a9 + 72f7900 commit 8b12ed5

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

pythonforandroid/recipes/scipy/__init__.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,11 @@ class ScipyRecipe(MesonRecipe):
1212
depends = ["numpy", "libopenblas", "fortran"]
1313
need_stl_shared = True
1414
meson_version = "1.5.0"
15-
hostpython_prerequisites = ["numpy", "Cython>=3.0.8"]
15+
hostpython_prerequisites = [
16+
"numpy",
17+
"Cython>=3.0.8",
18+
"pybind11>=2.13.2,<3.1.0",
19+
]
1620
patches = ["meson.patch"]
1721

1822
def get_recipe_meson_options(self, arch):

0 commit comments

Comments
 (0)