From cab14c8b2be2f82191ad000ab216d8acda3c6182 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 1 May 2025 04:59:48 +0000 Subject: [PATCH 1/2] Bump pypa/cibuildwheel from 2.23.2 to 2.23.3 Bumps [pypa/cibuildwheel](https://github.com/pypa/cibuildwheel) from 2.23.2 to 2.23.3. - [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.2...v2.23.3) --- updated-dependencies: - dependency-name: pypa/cibuildwheel dependency-version: 2.23.3 dependency-type: direct:production update-type: version-update:semver-patch ... 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 0098f11..e379eeb 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.2 + uses: pypa/cibuildwheel@v2.23.3 env: CIBW_SKIP: "cp36-* cp37-* cp38-* pp* *-manylinux_i686 *-musllinux_i686 *-musllinux_aarch64 *-win32" CIBW_ARCHS: "${{ matrix.cibw_archs }}" From 2eac463e14498d071c2f453899955379ba8f86a8 Mon Sep 17 00:00:00 2001 From: David Hoese Date: Thu, 1 May 2025 09:24:27 -0500 Subject: [PATCH 2/2] Switch wheel ubuntu to "latest" image --- .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 e379eeb..c7d9fc1 100644 --- a/.github/workflows/deploy.yaml +++ b/.github/workflows/deploy.yaml @@ -40,10 +40,10 @@ jobs: - os: macos-latest cibw_archs: "x86_64 arm64" artifact_name: "mac" - - os: "ubuntu-20.04" + - os: "ubuntu-latest" cibw_archs: "aarch64" artifact_name: "ubuntu-aarch" - - os: "ubuntu-20.04" + - os: "ubuntu-latest" cibw_archs: "x86_64" artifact_name: "ubuntu-x86_64"