diff --git a/test_package/numpy/requirements.txt b/test_package/numpy/requirements.txt index 505dd54..a4b019c 100644 --- a/test_package/numpy/requirements.txt +++ b/test_package/numpy/requirements.txt @@ -1,4 +1,5 @@ hypothesis==6.118.7 +meson==1.6.0 numpy==2.1.3 pytest-xdist==3.6.1 pytest==8.3.3 diff --git a/test_package/numpy/test.py b/test_package/numpy/test.py index 746663f..74ee34b 100644 --- a/test_package/numpy/test.py +++ b/test_package/numpy/test.py @@ -3,11 +3,4 @@ import sys import numpy as np -# `test_mem_policy.py` and `f2py/*` tests fail with Python 3.11 due to `numpy.distutils` -# deprecations and issues with the latest `setuptools`. Ignore it until it's resolves in `numpy`. -sys.exit( - not np.test( - verbose=2, - extra_argv=["-n", "auto", "-k=not test_mem_policy and not f2py"], - ) -) +sys.exit(not np.test(verbose=2, extra_argv=["-n", "auto"]))