From b640516b6c27ab86e063917cdd91bf0a4a91e43d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 13 Oct 2023 14:41:23 +0000 Subject: [PATCH 1/2] Bump pypa/cibuildwheel from 2.16.0 to 2.16.2 Bumps [pypa/cibuildwheel](https://github.com/pypa/cibuildwheel) from 2.16.0 to 2.16.2. - [Release notes](https://github.com/pypa/cibuildwheel/releases) - [Changelog](https://github.com/pypa/cibuildwheel/blob/main/docs/changelog.md) - [Commits](https://github.com/pypa/cibuildwheel/compare/a873dd9cbf9e3c4c73a1fd11ac31cf835f6eb502...fff9ec32ed25a9c576750c91e06b410ed0c15db7) --- updated-dependencies: - dependency-name: pypa/cibuildwheel dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 6f707a3d2..e86ea9a64 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -94,7 +94,7 @@ jobs: name: sdist path: dist - - uses: pypa/cibuildwheel@a873dd9cbf9e3c4c73a1fd11ac31cf835f6eb502 # v2.16.0 + - uses: pypa/cibuildwheel@fff9ec32ed25a9c576750c91e06b410ed0c15db7 # v2.16.2 with: only: ${{ matrix.only }} package-dir: dist/${{ needs.build_sdist.outputs.SDIST_NAME }} From f022c6480638c2e01b0e6243bb170f53d278e686 Mon Sep 17 00:00:00 2001 From: Greg Lucas Date: Fri, 13 Oct 2023 10:05:37 -0600 Subject: [PATCH 2/2] 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