Skip to content
This repository was archived by the owner on Aug 30, 2024. It is now read-only.

Commit 1bf4918

Browse files
authored
Merge pull request #51 from mattip/windll2
BUG: fix base directory and typo
2 parents 50eaabd + 42ba704 commit 1bf4918

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ build_script:
121121
- git checkout %BUILD_COMMIT%
122122
# Create _distributor_init.py
123123
- cd ..
124-
- python -c "import openblas_support; openblas_support.make_init('numpy')"
124+
- python -c "import openblas_support; openblas_support.make_init('numpy/numpy')"
125125
- cd numpy
126126
# Append license text relevant for the built wheel
127127
- type ..\LICENSE_win32.txt >> LICENSE.txt

openblas_support.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ def make_init(dirname):
2626
else:
2727
libs_dir = os.path.abspath(os.path.join(basedir, '.libs'))
2828
DLL_filenames = []
29-
if os.path.isdir(libs_path):
29+
if os.path.isdir(libs_dir):
3030
for filename in glob.glob(os.path.join(libs_dir,
3131
'*openblas*dll')):
3232
# NOTE: would it change behavior to load ALL

0 commit comments

Comments
 (0)