8000 ENH: Enable musllinux wheels by tgross35 · Pull Request #21200 · numpy/numpy · GitHub
[go: up one dir, main page]

Skip to content

ENH: Enable musllinux wheels #21200

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 12 commits into from
Prev Previous commit
Next Next commit
Fix UnboundLocalError
  • Loading branch information
tgross35 committed May 2, 2022
commit b3243d33e31fb62f1d351334ba66cd10251f10ad
7FDA
1 change: 1 addition & 0 deletions numpy/core/getlimits.py
Original file line number Diff line number Diff line change
Expand Up @@ -333,6 +333,7 @@ def _get_machar(ftype):
# Detect known / suspected types
key = ftype('-0.1').newbyteorder('<').tobytes()
ma_like = None
is_longdouble = False
if ftype == ntypes.longdouble:
# Could be 80 bit == 10 byte extended precision, where last bytes can
# be random garbage.
Expand Down
0