Skip to content

Commit

Permalink
Merge pull request #99 from fnemina/master
Browse files Browse the repository at this point in the history
Ignore IEEE_UNDERFLOW_FLAG on MacOS
  • Loading branch information
robintw committed Oct 23, 2022
2 parents 87039d5 + 0484946 commit 6c752d5
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions Py6S/outputs.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@ def __init__(self, stdout, stderr):
(platform.system() == "Darwin")
and (not ("IEEE_INVALID_FLAG" in stderr))
and (not ("IEEE_DENORMAL" in stderr))
and (not ("IEEE_UNDERFLOW_FLAG" in stderr))
): # Ignoring error on MacOS IEEE_INVALID_FLAG
print(stderr)
raise OutputParsingError(
Expand Down

0 comments on commit 6c752d5

Please sign in to comment.