File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -107,9 +107,10 @@ jobs:
107
107
python -m pip install cmake==3.24.2
108
108
python -m pip install toml && python -c "import toml; c = toml.load('pyproject.toml'); print('\n'.join(c['build-system']['requires']))" >> requirements.txt | python -m pip install -r requirements.txt
109
109
110
- echo Using OpenBLAS_HOME=%OpenBLAS_HOME%
111
- set "CMAKE_ARGS=-DLAPACK=ON -DOpenBLAS_INCLUDE_DIR=%OpenBLAS_HOME:/=/%/include -DOpenBLAS_LIBRARIES=%OpenBLAS_HOME:/=/%/lib/libopenblas.lib"
112
- echo CMAKE_ARGS: %CMAKE_ARGS%
110
+ set "OpenBLAS_HOME_UNIX=%OpenBLAS_HOME:\=/%"
111
+ set "CMAKE_ARGS=-DLAPACK=ON -DOpenBLAS_INCLUDE_DIR=%OpenBLAS_HOME_UNIX%/include -DOpenBLAS_LIBRARIES=%OpenBLAS_HOME_UNIX%/lib/libopenblas.lib"
112
+ echo %CMAKE_ARGS%
113
+
113
114
python setup.py bdist_wheel --py-limited-api=cp37 --dist-dir=%cd%\\wheelhouse -v
114
115
shell : cmd
115
116
You can’t perform that action at this time.
0 commit comments