From be2c3e3df491917a82cc357a3c4d8639f239bd54 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 16 Jun 2026 08:34:41 +0000 Subject: [PATCH] Build(deps): Bump pypa/cibuildwheel from 3.4 to 4.1 Bumps [pypa/cibuildwheel](https://github.com/pypa/cibuildwheel) from 3.4 to 4.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.4...v4.1) --- updated-dependencies: - dependency-name: pypa/cibuildwheel dependency-version: '4.1' 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..b39c63e555 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.1 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.1 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.1 if: matrix.precision == 'single' env: CMAKE_ARGS: "-DSUNDIALS_PRECISION=${{ matrix.precision }} -DSUNDIALS_INDEX_SIZE=${{ matrix.index }}"