Skip to content

Commit

Permalink
Merge pull request #22575 from ccordoba12/issue-22551
Browse files Browse the repository at this point in the history
PR: Add harmless OpenCL warning to bening errors (IPython console)
  • Loading branch information
ccordoba12 authored Oct 7, 2024
2 parents 63f631f + 95a541c commit 2d41ff2
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions spyder/plugins/ipythonconsole/widgets/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -533,6 +533,9 @@ def is_benign_error(self, error):
# dependency of IPykernel.
# See spyder-ide/spyder#21900
"debugpy_stream undefined, debugging will not be enabled",
# Harmless warning from OpenCL on Windows.
# See spyder-ide/spyder#22551
"The system cannot find the path specified",
]

return any([err in error for err in benign_errors])
Expand Down

0 comments on commit 2d41ff2

Please sign in to comment.