diff options
| author | Gertjan van den Burg <gertjanvandenburg@gmail.com> | 2019-12-05 14:54:46 +0000 |
|---|---|---|
| committer | Gertjan van den Burg <gertjanvandenburg@gmail.com> | 2019-12-05 14:54:46 +0000 |
| commit | 5287a470390011a24bbc3e7dce1ee729e193f8dc (patch) | |
| tree | 0c83cf214a5c6597280ce43fababa44acd398da4 | |
| parent | try installing just openblas (diff) | |
| download | pygensvm-5287a470390011a24bbc3e7dce1ee729e193f8dc.tar.gz pygensvm-5287a470390011a24bbc3e7dce1ee729e193f8dc.zip | |
debugging
| -rw-r--r-- | setup.py | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -259,11 +259,14 @@ def cibuildwheel_windows(): "OPENBLAS" ] = "/c/cibw/openblas/OpenBLAS.0.2.14.1/lib/native/lib" - for path, dirs, files in os.walk("/c/cibw/lapacke"): + for path, dirs, files in os.walk("/c/cibw/openblas"): print(path) for f in files: print("\t" + f) sys.stdout.flush() + import time + + time.sleep(5) if __name__ == "__main__": |
