Skip to content

Commit

Permalink
Temporarily show NumPy import error.
Browse files Browse the repository at this point in the history
  • Loading branch information
Danny Hermes committed Oct 18, 2023
1 parent 0a4a2ee commit ad8f9c2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@

try:
import numpy as np
except ImportError:
except ImportError as exc:
print(f"::: Failed to import Numpy: {exc}", file=sys.stderr, end="\n")
np = None
import setuptools
import setuptools.dist
Expand Down

0 comments on commit ad8f9c2

Please sign in to comment.