diff --git a/.github/workflows/sundials4py-build-and-test.yml b/.github/workflows/sundials4py-build-and-test.yml index efd60af93..54afb25b3 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 }}"