From d69359b80b7dab31510d529cc173ebce8bb69c3e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 5 Aug 2025 02:23:42 +0000 Subject: [PATCH 1/2] Bump pypa/cibuildwheel from 3.0 to 3.1 in the actions group Bumps the actions group with 1 update: [pypa/cibuildwheel](https://github.com/pypa/cibuildwheel). Updates `pypa/cibuildwheel` from 3.0 to 3.1 - [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/v3.0...v3.1) --- updated-dependencies: - dependency-name: pypa/cibuildwheel dependency-version: '3.1' dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions ... Signed-off-by: dependabot[bot] --- .github/workflows/cd.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index 7a309d4..41013c3 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -69,7 +69,7 @@ jobs: with: fetch-depth: 0 - - uses: pypa/cibuildwheel@v3.0 + - uses: pypa/cibuildwheel@v3.1 env: # limited at least by availability of h5py, which skips pypy and musl CIBW_ARCHS: ${{ matrix.cibw_archs }} From e3112f037a8a44cdb1fcbc56b870dfd25efb4838 Mon Sep 17 00:00:00 2001 From: Ryan Volz Date: Mon, 11 Aug 2025 15:41:45 -0400 Subject: [PATCH 2/2] cibuildwheel: Skip Python 3.14 because h5py wheels don't exist yet --- .github/workflows/cd.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index 41013c3..88119e6 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -46,23 +46,23 @@ jobs: - os: ubuntu-latest cibw_archs: x86_64 cibw_build: "*" - cibw_skip: "pp* *musllinux*" + cibw_skip: "pp* *musllinux* cp314*" - os: ubuntu-24.04-arm cibw_archs: aarch64 cibw_build: "*" - cibw_skip: "cp38* pp* *musllinux*" + cibw_skip: "cp38* pp* *musllinux* cp314*" - os: windows-latest cibw_archs: AMD64 cibw_build: "*" - cibw_skip: "pp* *musllinux*" + cibw_skip: "pp* *musllinux* cp314*" - os: macos-14 cibw_archs: arm64 cibw_build: "*" - cibw_skip: "pp* *musllinux*" + cibw_skip: "pp* *musllinux* cp314*" - os: macos-13 cibw_archs: x86_64 cibw_build: "*" - cibw_skip: "pp* *musllinux*" + cibw_skip: "pp* *musllinux* cp314*" steps: - uses: actions/checkout@v4