python-numpy: link against libopenblas

This commit is contained in:
termux-pacman-bot
2022-09-21 08:51:41 +00:00
parent b42e51aee3
commit 5142233120
3 changed files with 27 additions and 2 deletions

View File

@@ -0,0 +1,11 @@
--- a/numpy/core/tests/test_mem_policy.py
+++ b/numpy/core/tests/test_mem_policy.py
@@ -18,6 +18,8 @@
"""
if sys.platform.startswith('cygwin'):
pytest.skip('link fails on cygwin')
+ if os.path.exists("/system/bin/app_process"):
+ pytest.skip('link fails on Android')
functions = [
("get_default_policy", "METH_NOARGS", """
Py_INCREF(PyDataMem_DefaultHandler);