File tree Expand file tree Collapse file tree 2 files changed +19
-2
lines changed
Expand file tree Collapse file tree 2 files changed +19
-2
lines changed Original file line number Diff line number Diff line change 1+ setlocal EnableDelayedExpansion
2+ for %%f in (winbuild\build\license\*) do (
3+ set x = %%~nf
4+ rem Skip FriBiDi license, it is not included in the wheel.
5+ set fribidi = !x:~0 ,7 !
6+ if NOT !fribidi! == fribidi (
7+ rem Skip imagequant license, it is not included in the wheel.
8+ set libimagequant = !x:~0 ,13 !
9+ if NOT !libimagequant! == libimagequant (
10+ echo . >> LICENSE
11+ echo ===== %%~nf ===== >> LICENSE
12+ echo . >> LICENSE
13+ type %%f >> LICENSE
14+ )
15+ )
16+ )
17+ call winbuild\\build\\build_env.cmd
18+ %pythonLocation% \python.exe -m cibuildwheel . --output-dir wheelhouse
Original file line number Diff line number Diff line change 6868
6969 - name : Build wheels
7070 run : |
71- .\\winbuild\\build\\build_env.cmd
72- python.exe -m cibuildwheel . --output-dir wheelhouse
71+ .\\.github\\workflows\\wheels-build.cmd
7372 env :
7473 CIBW_ARCHS : ${{ matrix.cibw_arch }}
7574 CIBW_BEFORE_ALL : " {package}\\ winbuild\\ build\\ build_dep_all.cmd"
You can’t perform that action at this time.
0 commit comments