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 b17b514
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,10 @@

try:
import numpy as np
except ImportError:
except ImportError as exc:
print(f"::: Failed to import NumPy: {exc}", file=sys.stderr, end="\n")
print(f"::: sys.executable: {sys.executable}", file=sys.stderr, end="\n")

np = None
import setuptools
import setuptools.dist
Expand Down

0 comments on commit b17b514

Please sign in to comment.