From 0ec2d7f22321410f569a60257aae389eb6b2e7f9 Mon Sep 17 00:00:00 2001 From: Gertjan van den Burg Date: Thu, 5 Dec 2019 12:33:01 +0000 Subject: debug printing --- setup.py | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'setup.py') diff --git a/setup.py b/setup.py index 9a4a0d7..b0ca124 100644 --- a/setup.py +++ b/setup.py @@ -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() -- cgit v1.2.3