From f022c6480638c2e01b0e6243bb170f53d278e686 Mon Sep 17 00:00:00 2001 From: Greg Lucas Date: Fri, 13 Oct 2023 10:05:37 -0600 Subject: [PATCH] REL: Add cp312 build to release Also bump the cibuildwheel version in the source generator. --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index e86ea9a64..8fb9c6b78 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -56,7 +56,7 @@ jobs: steps: - uses: actions/checkout@v4 - name: Install cibuildwheel - run: pipx install cibuildwheel==2.14.1 + run: pipx install cibuildwheel==2.16.2 - id: set-matrix run: | MATRIX=$( @@ -71,7 +71,7 @@ jobs: ) echo "include=$MATRIX" >> $GITHUB_OUTPUT env: - CIBW_BUILD: "cp39-* cp310-* cp311-*" + CIBW_BUILD: "cp39-* cp310-* cp311-* cp312-*" # Skip 32 bit windows builds and musllinux due to lack of numpy wheels CIBW_SKIP: "*-win32 *-musllinux*" CIBW_ARCHS_MACOS: x86_64 arm64