From b615624718f832b64bae5974acc26173e7acaef5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 10 Aug 2026 19:53:27 +0000 Subject: [PATCH 1/5] Bump pypa/cibuildwheel from 3.4.1 to 4.2.0 Bumps [pypa/cibuildwheel](https://github.com/pypa/cibuildwheel) from 3.4.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/v3.4.1...v4.2.0) --- updated-dependencies: - dependency-name: pypa/cibuildwheel dependency-version: 4.2.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/python-cibuildwheel.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/python-cibuildwheel.yml b/.github/workflows/python-cibuildwheel.yml index 87355dc61..df4bdb812 100644 --- a/.github/workflows/python-cibuildwheel.yml +++ b/.github/workflows/python-cibuildwheel.yml @@ -92,7 +92,7 @@ jobs: echo "MACOSX_DEPLOYMENT_TARGET=14.0" >> $GITHUB_ENV - name: Build python wheels for ${{ matrix.os }} - uses: pypa/cibuildwheel@v3.4.1 + uses: pypa/cibuildwheel@v4.2.0 env: # Skip CPython 3.8 CIBW_SKIP: ${{ env.CIBW_SKIP }} cp38-* From 8beb4b72d367db9b9296c1c561aad30e958d8cbf Mon Sep 17 00:00:00 2001 From: Hendrik Muhs Date: Tue, 25 Aug 2026 21:48:14 +0200 Subject: [PATCH 2/5] Update python-cibuildwheel.yml disable python 3.15(unreleased) --- .github/workflows/python-cibuildwheel.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/python-cibuildwheel.yml b/.github/workflows/python-cibuildwheel.yml index df4bdb812..5c55e9ae1 100644 --- a/.github/workflows/python-cibuildwheel.yml +++ b/.github/workflows/python-cibuildwheel.yml @@ -94,8 +94,8 @@ jobs: - name: Build python wheels for ${{ matrix.os }} uses: pypa/cibuildwheel@v4.2.0 env: - # Skip CPython 3.8 - CIBW_SKIP: ${{ env.CIBW_SKIP }} cp38-* + # Skip CPython 3.8, 3.15 + CIBW_SKIP: ${{ env.CIBW_SKIP }} cp38-* cp315-* # only build native packages CIBW_ARCHS: native From 23ab9bf01a80df5f8f542ead627e79c9ca008fc4 Mon Sep 17 00:00:00 2001 From: Hendrik Muhs Date: Tue, 25 Aug 2026 21:53:41 +0200 Subject: [PATCH 3/5] Update python-cibuildwheel.yml --- .github/workflows/python-cibuildwheel.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/python-cibuildwheel.yml b/.github/workflows/python-cibuildwheel.yml index 5c55e9ae1..1489924d2 100644 --- a/.github/workflows/python-cibuildwheel.yml +++ b/.github/workflows/python-cibuildwheel.yml @@ -94,8 +94,8 @@ jobs: - name: Build python wheels for ${{ matrix.os }} uses: pypa/cibuildwheel@v4.2.0 env: - # Skip CPython 3.8, 3.15 - CIBW_SKIP: ${{ env.CIBW_SKIP }} cp38-* cp315-* + # Skip CPython 3.15 + CIBW_SKIP: ${{ env.CIBW_SKIP }} cp315* # only build native packages CIBW_ARCHS: native From 4ebf281a997fa578115268b53fe3307135b03002 Mon Sep 17 00:00:00 2001 From: Hendrik Muhs Date: Tue, 25 Aug 2026 22:00:24 +0200 Subject: [PATCH 4/5] Update requirements.txt --- python/requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/requirements.txt b/python/requirements.txt index 4c480c80e..daa7a73b8 100644 --- a/python/requirements.txt +++ b/python/requirements.txt @@ -1,4 +1,4 @@ autowrap>=0.23.0 msgpack>=1.0.0 pytest>=7.1.1 -cython>=3.0 +cython==3.2.9 From 28ac83f481d4dd8ffdbeae94655d4ea7ad838558 Mon Sep 17 00:00:00 2001 From: Hendrik Muhs Date: Tue, 25 Aug 2026 22:40:51 +0200 Subject: [PATCH 5/5] Update pyproject.toml --- python/pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/pyproject.toml b/python/pyproject.toml index 6cf783b3d..ecbcf79cc 100644 --- a/python/pyproject.toml +++ b/python/pyproject.toml @@ -1,2 +1,2 @@ [build-system] -requires = ["autowrap>=0.23.0", "msgpack>=1.0.0", "pytest>=7.1.1", "cython>=3.0"] +requires = ["autowrap>=0.23.0", "msgpack>=1.0.0", "pytest>=7.1.1", "cython==3.2.9"]