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

BUG: fix base directory and typo #51

Merged
merged 1 commit into from
Jun 16, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ build_script:
- git checkout %BUILD_COMMIT%
# Create _distributor_init.py
- cd ..
- python -c "import openblas_support; openblas_support.make_init('numpy')"
- python -c "import openblas_support; openblas_support.make_init('numpy/numpy')"
- cd numpy
# Append license text relevant for the built wheel
- type ..\LICENSE_win32.txt >> LICENSE.txt
Expand Down
2 changes: 1 addition & 1 deletion openblas_support.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def make_init(dirname):
else:
libs_dir = os.path.abspath(os.path.join(basedir, '.libs'))
DLL_filenames = []
if os.path.isdir(libs_path):
if os.path.isdir(libs_dir):
for filename in glob.glob(os.path.join(libs_dir,
'*openblas*dll')):
# NOTE: would it change behavior to load ALL
Expand Down