File: check_no_numpy.py

package info (click to toggle)
python-opt-einsum 3.4.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,772 kB
  • sloc: python: 4,124; makefile: 31; javascript: 15
file content (5 lines) | stat: -rw-r--r-- 73 bytes parent folder | download
1
2
3
4
5
try:
    import numpy
    exit(1)
except ModuleNotFoundError:
    exit(0)