Commit 66b9b3b
authored
Exclude testing with scipy in the env with python 3.9 (#2583)
The PR excludes running scipy relating tests from the scope, because
there is the scipy import issue:
```bash
File "/home/runner/miniconda3/envs/test/lib/python3.9/site-packages/dpctl/__init__.py", line 51, in <module>
from ._sycl_queue import (
File "dpctl/_sycl_queue.pyx", line 1, in init dpctl._sycl_queue
File "/home/runner/miniconda3/envs/test/lib/python3.9/site-packages/dpctl/memory/__init__.py", line 31, in <module>
from ._memory import (
File "dpctl/memory/_memory.pyx", line 69, in init dpctl.memory._memory
File "/home/runner/miniconda3/envs/test/lib/python3.9/site-packages/numpy/__init__.py", line 155, in <module>
from . import fft
File "/home/runner/miniconda3/envs/test/lib/python3.9/site-packages/numpy/fft/__init__.py", line 215, in <module>
import mkl_fft.interfaces.numpy_fft as _nfft
File "/home/runner/miniconda3/envs/test/lib/python3.9/site-packages/mkl_fft/__init__.py", line 45, in <module>
import mkl_fft.interfaces # isort: skip
File "/home/runner/miniconda3/envs/test/lib/python3.9/site-packages/mkl_fft/interfaces/__init__.py", line 29, in <module>
import scipy.fft
File "/home/runner/miniconda3/envs/test/lib/python3.9/site-packages/scipy/__init__.py", line 110, in <module>
__all__.remove('linalg')
ValueError: list.remove(x): x not in list
```
when installing the packages from
`https://software.repos.intel.com/python/conda/` channel.
The support of python 3.9 for scipy was stopped to upload there for a
long time ago and the latest available is scipy 1.8.1 which is too old
and has the import issue.1 parent b93b328 commit 66b9b3b
File tree
3 files changed
+14
-3
lines changed- .github/workflows
- conda-recipe
3 files changed
+14
-3
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
39 | 39 | | |
40 | 40 | | |
41 | 41 | | |
| 42 | + | |
| 43 | + | |
| 44 | + | |
| 45 | + | |
| 46 | + | |
| 47 | + | |
| 48 | + | |
| 49 | + | |
| 50 | + | |
| 51 | + | |
42 | 52 | | |
43 | 53 | | |
44 | 54 | | |
| |||
84 | 94 | | |
85 | 95 | | |
86 | 96 | | |
87 | | - | |
| 97 | + | |
88 | 98 | | |
89 | 99 | | |
90 | 100 | | |
91 | 101 | | |
92 | | - | |
| 102 | + | |
93 | 103 | | |
94 | 104 | | |
95 | 105 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
61 | 61 | | |
62 | 62 | | |
63 | 63 | | |
| 64 | + | |
64 | 65 | | |
65 | 66 | | |
66 | 67 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
63 | 63 | | |
64 | 64 | | |
65 | 65 | | |
66 | | - | |
| 66 | + | |
67 | 67 | | |
68 | 68 | | |
69 | 69 | | |
| |||
0 commit comments