File tree Expand file tree Collapse file tree 4 files changed +15
-0
lines changed
Expand file tree Collapse file tree 4 files changed +15
-0
lines changed Original file line number Diff line number Diff line change @@ -119,6 +119,7 @@ commands:
119119 bazel run --jobs=8 --define version=$(git rev-parse HEAD) //python:deploy-pip39 -- snapshot
120120 bazel run --jobs=8 --define version=$(git rev-parse HEAD) //python:deploy-pip310 -- snapshot
121121 bazel run --jobs=8 --define version=$(git rev-parse HEAD) //python:deploy-pip311 -- snapshot
122+ bazel run --jobs=8 --define version=$(git rev-parse HEAD) //python:deploy-pip312 -- snapshot
122123
123124 test-pip-snapshot-unix :
124125 steps :
@@ -161,6 +162,7 @@ commands:
161162 bazel run --jobs=8 --define version=$(cat VERSION) //python:deploy-pip39 --compilation_mode=opt -- release
162163 bazel run --jobs=8 --define version=$(cat VERSION) //python:deploy-pip310 --compilation_mode=opt -- release
163164 bazel run --jobs=8 --define version=$(cat VERSION) //python:deploy-pip311 --compilation_mode=opt -- release
165+ bazel run --jobs=8 --define version=$(cat VERSION) //python:deploy-pip312 --compilation_mode=opt -- release
164166
165167
166168 # ########################
Original file line number Diff line number Diff line change @@ -37,3 +37,6 @@ IF %errorlevel% NEQ 0 EXIT /b %errorlevel%
3737
3838bazel --output_user_root=C:/tmp run --verbose_failures --define version=%VER% //python:deploy-pip311 --compilation_mode=opt -- release
3939IF %errorlevel% NEQ 0 EXIT /b %errorlevel%
40+
41+ bazel --output_user_root=C:/tmp run --verbose_failures --define version=%VER% //python:deploy-pip312 --compilation_mode=opt -- release
42+ IF %errorlevel% NEQ 0 EXIT /b %errorlevel%
Original file line number Diff line number Diff line change @@ -38,3 +38,6 @@ IF %errorlevel% NEQ 0 EXIT /b %errorlevel%
3838
3939bazel --output_user_root=C:/tmp run --verbose_failures --define version=%VER% //python:deploy-pip311 -- snapshot
4040IF %errorlevel% NEQ 0 EXIT /b %errorlevel%
41+
42+ bazel --output_user_root=C:/tmp run --verbose_failures --define version=%VER% //python:deploy-pip312 -- snapshot
43+ IF %errorlevel% NEQ 0 EXIT /b %errorlevel%
Original file line number Diff line number Diff line change @@ -48,6 +48,13 @@ python_versions = [
4848 "libpython" : "@python311//:libpython" ,
4949 "suffix" : "311" ,
5050 },
51+ {
52+ "name" : "python312" ,
53+ "python_version" : "3.12" ,
54+ "python_headers" : "@python312//:python_headers" ,
55+ "libpython" : "@python312//:libpython" ,
56+ "suffix" : "312" ,
57+ },
5158]
5259
5360def register_all_toolchains ():
You can’t perform that action at this time.
0 commit comments