aboutsummaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorGertjan van den Burg <gertjanvandenburg@gmail.com>2019-12-05 12:33:01 +0000
committerGertjan van den Burg <gertjanvandenburg@gmail.com>2019-12-05 12:33:01 +0000
commit0ec2d7f22321410f569a60257aae389eb6b2e7f9 (patch)
tree9d0a65574d4562420bc994b983ef8e886f22813c /setup.py
parentAttempt to hardcode environment into setup.py (diff)
downloadpygensvm-0ec2d7f22321410f569a60257aae389eb6b2e7f9.tar.gz
pygensvm-0ec2d7f22321410f569a60257aae389eb6b2e7f9.zip
debug printing
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py6
1 files changed, 6 insertions, 0 deletions
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()