Skip to content

Commit

Permalink
Merge pull request numpy#22713 from seberg/numba-systemerror
Browse files Browse the repository at this point in the history
TST: Skip when numba/numpy compat issues cause SystemError
  • Loading branch information
charris authored Dec 2, 2022
2 parents fb4c963 + d56c487 commit c4ce4e9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion numpy/random/tests/test_extending.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@
# numba issue gh-4733
warnings.filterwarnings('always', '', DeprecationWarning)
import numba
except ImportError:
except (ImportError, SystemError):
# Certain numpy/numba versions trigger a SystemError due to a numba bug
numba = None

try:
Expand Down

0 comments on commit c4ce4e9

Please sign in to comment.