8000 BUG: detect buggy windows version and raise at import by mattip · Pull Request #17553 · numpy/numpy · GitHub
[go: up one dir, main page]

Skip to content

BUG: detect buggy windows version and raise at import #17553

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

Closed
wants to merge 4 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update numpy/__init__.py
Co-authored-by: Eric Wieser <wieser.eric@gmail.com>
  • Loading branch information
mattip and eric-wieser authored Oct 14, 2020
commit 536f8976d82050171833e4f21b2b5c6b88c22aa8
2 changes: 1 addition & 1 deletion numpy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -365,7 +365,7 @@ def _win_os_check():
a = np.arange(13 * 13, dtype=np.float64).reshape(13, 13)
a = a % 17 # calls fmod
np.linalg.eig(a)
except:
except Exception:
msg = ("The current Numpy installation ({!r}) fails to "
"pass a sanity check due to a bug in the windows runtime. "
"See this issue for more information "
Expand Down
0