Skip to content

Commit

Permalink
Temporary debugging sys.path in setup.py.
Browse files Browse the repository at this point in the history
  • Loading branch information
Danny Hermes authored and dhermes committed Jun 18, 2024
1 parent a6b5938 commit de75e4b
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,10 @@
import numpy as np
except ImportError as exc:
print(f"::: Failed to import NumPy: {exc}", file=sys.stderr, end="\n")
if sys.path:
print("::: sys.path:", file=sys.stderr, end="\n")
for value in sys.path:
print(f"::: - {value}", file=sys.stderr, end="\n")
print(f"::: sys.executable: {sys.executable}", file=sys.stderr, end="\n")

np = None
Expand Down

0 comments on commit de75e4b

Please sign in to comment.