From 797790861f555117b2be3915ab6f878a0e594c72 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 1 Jul 2025 07:25:00 +0000 Subject: [PATCH 1/3] Bump pypa/cibuildwheel from 2.23.3 to 3.0.0 Bumps [pypa/cibuildwheel](https://github.com/pypa/cibuildwheel) from 2.23.3 to 3.0.0. - [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/v2.23.3...v3.0.0) --- updated-dependencies: - dependency-name: pypa/cibuildwheel dependency-version: 3.0.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/deploy.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/deploy.yaml b/.github/workflows/deploy.yaml index c7d9fc1..ab787a7 100644 --- a/.github/workflows/deploy.yaml +++ b/.github/workflows/deploy.yaml @@ -59,7 +59,7 @@ jobs: platforms: all - name: Build wheels - uses: pypa/cibuildwheel@v2.23.3 + uses: pypa/cibuildwheel@v3.0.0 env: CIBW_SKIP: "cp36-* cp37-* cp38-* pp* *-manylinux_i686 *-musllinux_i686 *-musllinux_aarch64 *-win32" CIBW_ARCHS: "${{ matrix.cibw_archs }}" From dbf992d6d73af9933e884c44bafd488a423db60c Mon Sep 17 00:00:00 2001 From: David Hoese Date: Tue, 1 Jul 2025 09:57:07 -0500 Subject: [PATCH 2/3] Update wheel building to use latest Windows image --- .github/workflows/deploy.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/deploy.yaml b/.github/workflows/deploy.yaml index ab787a7..db6877a 100644 --- a/.github/workflows/deploy.yaml +++ b/.github/workflows/deploy.yaml @@ -34,7 +34,7 @@ jobs: fail-fast: false matrix: include: - - os: windows-2019 + - os: windows-latest cibw_archs: "AMD64 ARM64" artifact_name: "win" - os: macos-latest From 9202f13e7ba375b2ea61669b3579c3e7c2f0121c Mon Sep 17 00:00:00 2001 From: David Hoese Date: Tue, 1 Jul 2025 10:46:21 -0500 Subject: [PATCH 3/3] Remove deprecated cibuildhweel identifiers --- .github/workflows/deploy.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy.yaml b/.github/workflows/deploy.yaml index db6877a..0fde63c 100644 --- a/.github/workflows/deploy.yaml +++ b/.github/workflows/deploy.yaml @@ -61,9 +61,9 @@ jobs: - name: Build wheels uses: pypa/cibuildwheel@v3.0.0 env: - CIBW_SKIP: "cp36-* cp37-* cp38-* pp* *-manylinux_i686 *-musllinux_i686 *-musllinux_aarch64 *-win32" + CIBW_SKIP: "cp38-* *-manylinux_i686 *-musllinux_i686 *-musllinux_aarch64 *-win32" CIBW_ARCHS: "${{ matrix.cibw_archs }}" - CIBW_TEST_SKIP: "*_arm64 *_universal2:arm64" + CIBW_TEST_SKIP: "*_arm64" - uses: actions/upload-artifact@v4 with: