diff options
Diffstat (limited to 'setup.py')
| -rw-r--r-- | setup.py | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -242,6 +242,7 @@ def cibuildwheel_windows(): and os.environ.get("TRAVIS_OS_NAME", "none") == "windows" ): return + print("\n*** Preparing GenSVM for CIBuildWheel ***") import shutil @@ -256,6 +257,11 @@ def cibuildwheel_windows(): os.environ["OPENBLAS"] = "/c/cibw/lapacke/OpenBLAS.0.2.14.1/lib/native" + for path, dirs, files in os.walk("/c/cibw/lapacke"): + print(path) + for f in files: + print('\t' + f) + if __name__ == "__main__": check_requirements() |
