()
| 35 | |
| 36 | |
| 37 | def _show_numpy_info(): |
| 38 | import numpy as np |
| 39 | |
| 40 | print(f"NumPy version {np.__version__}") |
| 41 | info = np.lib._utils_impl._opt_info() |
| 42 | print("NumPy CPU features: ", (info or 'nothing enabled')) |
| 43 | |
| 44 | |
| 45 | class PytestTester: |
no outgoing calls
no test coverage detected
searching dependent graphs…