From e6a656b2204cfeaf00ae67ebddf2777d1c28c274 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 9 Jun 2026 08:34:46 +0000 Subject: [PATCH] Build(deps): Bump pypa/cibuildwheel from 3.4 to 4.0 Bumps [pypa/cibuildwheel](https://github.com/pypa/cibuildwheel) from 3.4 to 4.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...v4.0) --- updated-dependencies: - dependency-name: pypa/cibuildwheel dependency-version: '4.0' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/sundials4py-build-and-test.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/sundials4py-build-and-test.yml b/.github/workflows/sundials4py-build-and-test.yml index efd60af93a..54afb25b34 100644 --- a/.github/workflows/sundials4py-build-and-test.yml +++ b/.github/workflows/sundials4py-build-and-test.yml @@ -51,7 +51,7 @@ jobs: with: submodules: true - - uses: pypa/cibuildwheel@v3.4 + - uses: pypa/cibuildwheel@v4.0 env: # Default (Linux/macOS): install matplotlib and run both test suites CIBW_TEST_REQUIRES: "pytest matplotlib" @@ -87,7 +87,7 @@ jobs: submodules: true # Double precision - run all tests - - uses: pypa/cibuildwheel@v3.4 + - uses: pypa/cibuildwheel@v4.0 if: matrix.precision == 'double' env: CMAKE_ARGS: "-DSUNDIALS_PRECISION=${{ matrix.precision }} -DSUNDIALS_INDEX_SIZE=${{ matrix.index }}" @@ -95,7 +95,7 @@ jobs: CIBW_TEST_COMMAND: "pytest {project}/bindings/sundials4py/test {project}/examples/python" # Single precision - skip examples - - uses: pypa/cibuildwheel@v3.4 + - uses: pypa/cibuildwheel@v4.0 if: matrix.precision == 'single' env: CMAKE_ARGS: "-DSUNDIALS_PRECISION=${{ matrix.precision }} -DSUNDIALS_INDEX_SIZE=${{ matrix.index }}"