From b566c93ffaa4357fcfdf901ba325d2e95a87e06c Mon Sep 17 00:00:00 2001 From: shenjack <3695888@qq.com> Date: Mon, 9 Oct 2023 19:30:09 +0800 Subject: [PATCH] Add | add 3.12 build option to build_rs --- build_rs.ps1 | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/build_rs.ps1 b/build_rs.ps1 index b77858a..5813b3a 100644 --- a/build_rs.ps1 +++ b/build_rs.ps1 @@ -4,7 +4,7 @@ Write-Output $args[0] $do = 0 -if ("38" -notin $args -and "39" -notin $args -and "310" -notin $args -and "311" -notin $args) { +if ("38" -notin $args -and "39" -notin $args -and "310" -notin $args -and "311" -notin $args -and "312" -notin $args) { $do = 1 } @@ -22,6 +22,9 @@ if ($do -or "310" -in $args) { if ($do -or "311" -in $args) { python3.11 setup.py build } +if ($do -or "312" -in $args) { + python3.12 setup.py build +} python3.8 post_build.py