-
Notifications
You must be signed in to change notification settings - Fork 23
Exclude testing with scipy in the env with python 3.9 #2583
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
antonwolfy
merged 3 commits into
master
from
exclude-scipy-from-testing-with-python-3.9
Sep 22, 2025
Merged
Exclude testing with scipy in the env with python 3.9 #2583
antonwolfy
merged 3 commits into
master
from
exclude-scipy-from-testing-with-python-3.9
Sep 22, 2025
+14
−3
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
View rendered docs @ https://intelpython.github.io/dpnp/index.html |
Array API standard conformance tests for dpnp=0.19.0dev4=py313h509198e_7 ran successfully. |
vlad-perevezentsev
approved these changes
Sep 22, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
Thank you @antonwolfy
github-actions bot
added a commit
that referenced
this pull request
Sep 22, 2025
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. 66b9b3b
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
The PR excludes running scipy relating tests from the scope, because there is the scipy import issue:
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.