File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -131,7 +131,9 @@ jobs:
131131 cat tools/LICENSE_win32.txt >> LICENSE.txt
132132 python -m pip wheel -w dist -vv .
133133 # move the mis-named scipy_openblas64-none-any.whl to a platform-specific name
134- for f in dist/*any*.whl; do mv $f "${f/%any.whl/$WHEEL_PLAT.whl}"; done
134+ if [ -e dist/*any*.whl ]; then
135+ for f in dist/*.whl; do mv $f "${f/%any.whl/$WHEEL_PLAT.whl}"; done
136+ fi
135137
136138 - name : Set up different Python
137139 uses : actions/setup-python@v5
Original file line number Diff line number Diff line change @@ -97,7 +97,7 @@ for /f "usebackq tokens=*" %%i in (`"C:\Program Files (x86)\Microsoft Visual Stu
9797PATH=C:\Program Files\LLVM\bin;%PATH%
9898
9999:: Run CMake and Ninja build
100- set CFLAGS = " -Wno-reserved-macro-identifier -Wno-unsafe-buffer-usage"
100+ set CFLAGS = -Wno-reserved-macro-identifier -Wno-unsafe-buffer-usage
101101cmake .. -G Ninja -DCMAKE_BUILD_TYPE=Release -DUSE_THREADS=1 -DNUM_THREADS=24 -DTARGET=ARMV8 -DBUILD_SHARED_LIBS=ON -DARCH=arm64 ^
102102-DBINARY=%build_bits% -DCMAKE_SYSTEM_PROCESSOR=ARM64 -DCMAKE_C_COMPILER=clang-cl ^
103103-DCMAKE_Fortran_COMPILER=flang-new -DSYMBOLPREFIX=" scipy_" -DLIBNAMEPREFIX=" scipy_" %interface_flags%
You can’t perform that action at this time.
0 commit comments