diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 5dafa53..19ccca6 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -125,7 +125,7 @@ jobs: python OLD_setup.py install elif [[ "$PYTHON_VERSION" != "3.7" ]] && [[ "$PYTHON_VERSION" != "3.8" ]]; then python -c "import numpy as np; print('NUMPY BLAS INFOS'); print(np.show_config())" - python -m pip install . + python -m pip install --verbose . fi - name: Test run: | diff --git a/meson.build b/meson.build index 87bb6b6..8c69798 100644 --- a/meson.build +++ b/meson.build @@ -19,6 +19,7 @@ endif # We find anaconda blas on windows for github CI if not blas_deps[0].found() + message(run_command(py,['-c','''import os; print('CONDA LIB FOLDER'); print(os.listdir('C:/Miniconda/envs/test\\Library\\lib'))''']).stdout()) blas_deps = [cc.find_library('blas', dirs: ['C:/Miniconda/envs/test\\Library\\lib'], # this is the location on github CI static: get_option('link_blas_statically'))]