From 39e17db77470ae4f9ff8b9f010760cd544c61f0f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 12 Aug 2026 10:53:50 +0000 Subject: [PATCH 1/2] Bump pypa/cibuildwheel in the all-dependencies group across 1 directory Bumps the all-dependencies group with 1 update in the / directory: [pypa/cibuildwheel](https://github.com/pypa/cibuildwheel). Updates `pypa/cibuildwheel` from 4.1.1 to 4.2.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/4726cd35bb13f7bde50cf2761f2499ac7b3aa32c...1828c10ab37f080699c7b81cea34097c684a7074) --- updated-dependencies: - dependency-name: pypa/cibuildwheel dependency-version: 4.2.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: all-dependencies ... Signed-off-by: dependabot[bot] --- .github/workflows/build-test-release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-test-release.yml b/.github/workflows/build-test-release.yml index 3130062f3f..799cceb1e5 100644 --- a/.github/workflows/build-test-release.yml +++ b/.github/workflows/build-test-release.yml @@ -201,7 +201,7 @@ jobs: xcode-version: latest-stable - name: Build wheels - uses: pypa/cibuildwheel@4726cd35bb13f7bde50cf2761f2499ac7b3aa32c # v4.1.1 + uses: pypa/cibuildwheel@1828c10ab37f080699c7b81cea34097c684a7074 # v4.2.0 # GitHub Actions specific build parameters env: # pass GitHub runner info into Linux container From 4c322ff6ae1f460702ea37c4924be18e6db0f8ee Mon Sep 17 00:00:00 2001 From: Martijn Govers Date: Wed, 12 Aug 2026 13:13:27 +0200 Subject: [PATCH 2/2] disable python3.15t in CIBW Signed-off-by: Martijn Govers --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index d0fa768916..9a33cc139e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -210,7 +210,7 @@ test-command = "pytest {package}/tests" # we do not support # PyPy # disable Python 3.15 for now until it is released -skip = ["pp*", "cp315-*"] +skip = ["pp*", "cp315-*", "cp315t-*"] [tool.cibuildwheel.linux] archs = ["x86_64", "aarch64"]