From 9b075a4c4bcc7313bcd6a47ce9b8ff43284c6503 Mon Sep 17 00:00:00 2001 From: Colin Xu Date: Tue, 4 Feb 2025 10:51:48 +0800 Subject: [PATCH] Update batch packaging script buildall.cmd Signed-off-by: Colin Xu --- setup/buildall.cmd | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup/buildall.cmd b/setup/buildall.cmd index 49a7f83..9dbb831 100644 --- a/setup/buildall.cmd +++ b/setup/buildall.cmd @@ -1,7 +1,7 @@ @ECHO OFF 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 REM Build wheel and zip @@ -12,6 +12,7 @@ for %%a in (%py_list%) do ( for %%b in (%plat_list%) do ( set py_ver=%%a 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 ) )