From daf86819b73a99e905d248384e2af39366fdbc1c Mon Sep 17 00:00:00 2001 From: Gregory Szorc Date: Tue, 3 Oct 2023 12:05:31 +0800 Subject: [PATCH] just: build CPython 3.12 in macOS release automation Forgot a reference to 3.12. --- Justfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Justfile b/Justfile index 68a8b146..e291e0f0 100644 --- a/Justfile +++ b/Justfile @@ -39,7 +39,7 @@ release-build-macos tag: rm -rf build dist git checkout {{tag}} - for py in cpython-3.8 cpython-3.9 cpython-3.10 cpython-3.11; do + for py in cpython-3.8 cpython-3.9 cpython-3.10 cpython-3.11 cpython-3.12; do for opt in pgo pgo+lto; do ./build-macos.py --python $py --optimizations $opt || ./build-macos.py --python $py --optimizations $opt done