Update batch packaging script buildall.cmd

Signed-off-by: Colin Xu <colin.xu@gmail.com>
This commit is contained in:
Colin Xu 2025-02-04 10:51:48 +08:00
parent 3e65ce7284
commit 9b075a4c4b

View File

@ -1,7 +1,7 @@
@ECHO OFF @ECHO OFF
SETLOCAL EnableDelayedExpansion SETLOCAL EnableDelayedExpansion
set py_list=2.7 3.5 3.6 3.7 3.8 3.9 3.10 3.11 set py_list=2.7 3.5 3.6 3.7 3.8 3.9 3.10 3.11 3.12 3.13
set plat_list=win32 x64 set plat_list=win32 x64
REM Build wheel and zip REM Build wheel and zip
@ -12,6 +12,7 @@ for %%a in (%py_list%) do (
for %%b in (%plat_list%) do ( for %%b in (%plat_list%) do (
set py_ver=%%a set py_ver=%%a
set plat=%%b set plat=%%b
py -!py_ver! -m pip install --user gitpython setuptools wheel
py -!py_ver! setup.py bdist_wheel --plat-name=!plat! bdist_zip py -!py_ver! setup.py bdist_wheel --plat-name=!plat! bdist_zip
) )
) )