We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f0f7221 commit 1058f33Copy full SHA for 1058f33
mkl_fft/tests/third_party/scipy/test_basic.py
@@ -17,10 +17,7 @@
17
except ImportError:
18
pytest.skip("This test file needs scipy", allow_module_level=True)
19
else:
20
- if np.lib.NumpyVersion(scipy.__version__) < "1.12.0":
21
- # scipy from Intel channel is 1.10 with python 3.9 and 3.10
22
- pytest.skip("This test file needs scipy>=1.12", allow_module_level=True)
23
- elif np.lib.NumpyVersion(scipy.__version__) < "1.14.0":
+ if np.lib.NumpyVersion(scipy.__version__) < "1.14.0":
24
# For python-3.11 and 3.12, scipy<1.14 is installed from Intel channel
25
# For python<=3.9, scipy<1.14 is installed from conda channel
26
# pylint: disable=no-name-in-module
0 commit comments