diff options
| author | mattip <matti.picus@gmail.com> | 2022-11-18 15:52:57 +0200 |
|---|---|---|
| committer | mattip <matti.picus@gmail.com> | 2022-11-18 15:52:57 +0200 |
| commit | 05e5de70a0154fcba0d1e46fceed2b3875f76bd1 (patch) | |
| tree | 50fe805e591be159dfa91d5bc991cc2f1309f062 | |
| parent | 93475f51e286fdd08434931a4b97cf9510016add (diff) | |
| download | numpy-05e5de70a0154fcba0d1e46fceed2b3875f76bd1.tar.gz | |
aid debugging on the runner
| -rw-r--r-- | tools/wheels/cibw_test_command.sh | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tools/wheels/cibw_test_command.sh b/tools/wheels/cibw_test_command.sh index d2ebfb74f..1b2dc96d4 100644 --- a/tools/wheels/cibw_test_command.sh +++ b/tools/wheels/cibw_test_command.sh @@ -8,8 +8,9 @@ python -m pip install threadpoolctl python -c "import numpy; numpy.show_config()" which python python -c"import sys, pprint; pprint.pprint(sys.path)" -echo PATH=$PATH -python -c"from threadpoolctl import ThreadpoolController as TC; tc = TC(); libc = tc._get_libc()); print(libc, libc._dyld_imagecount())" +echo $PATH +python -c "from ctypes.util import find_library; print('find_library', find_library('c'))" +python -c "from threadpoolctl import ThreadpoolController as TC; tc = TC(); libc = tc._get_libc(); print(libc, libc._dyld_imagecount())" python $PROJECT_DIR/tools/openblas_support.py --check_version if [[ $RUNNER_OS == "Windows" ]]; then |
