diff options
| author | Gertjan van den Burg <gertjanvandenburg@gmail.com> | 2019-12-05 12:33:01 +0000 |
|---|---|---|
| committer | Gertjan van den Burg <gertjanvandenburg@gmail.com> | 2019-12-05 12:33:01 +0000 |
| commit | 0ec2d7f22321410f569a60257aae389eb6b2e7f9 (patch) | |
| tree | 9d0a65574d4562420bc994b983ef8e886f22813c /setup.py | |
| parent | Attempt to hardcode environment into setup.py (diff) | |
| download | pygensvm-0ec2d7f22321410f569a60257aae389eb6b2e7f9.tar.gz pygensvm-0ec2d7f22321410f569a60257aae389eb6b2e7f9.zip | |
debug printing
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() |
