aboutsummaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorGertjan van den Burg <gertjanvandenburg@gmail.com>2019-12-05 14:51:09 +0000
committerGertjan van den Burg <gertjanvandenburg@gmail.com>2019-12-05 14:51:09 +0000
commit7b028ee9eb90a1dfca9b91691dcc996647c4418e (patch)
tree194d64cf50bc7b013a78c65e8bc3b865b3a0f834 /setup.py
parentflush stdout (diff)
downloadpygensvm-7b028ee9eb90a1dfca9b91691dcc996647c4418e.tar.gz
pygensvm-7b028ee9eb90a1dfca9b91691dcc996647c4418e.zip
try installing just openblas
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/setup.py b/setup.py
index 9a02566..cd81196 100644
--- a/setup.py
+++ b/setup.py
@@ -250,12 +250,14 @@ def cibuildwheel_windows():
bits = 64 if sys.maxsize > 2 ** 32 else 32
bitprefix = "x64" if bits == 64 else "win32"
- basepath = "/c/cibw/lapacke/OpenBLAS.0.2.14.1/lib/native"
+ basepath = "/c/cibw/openblas/OpenBLAS.0.2.14.1/lib/native"
dllpath = basepath + "/lib/" + bitprefix + "/libopenblas.dll.a"
if os.path.exists(dllpath):
shutil.move(dllpath, basepath + "/lib/")
- os.environ["OPENBLAS"] = "/c/cibw/lapacke/OpenBLAS.0.2.14.1/lib/native/lib"
+ os.environ[
+ "OPENBLAS"
+ ] = "/c/cibw/openblas/OpenBLAS.0.2.14.1/lib/native/lib"
for path, dirs, files in os.walk("/c/cibw/lapacke"):
print(path)