@@ -11,29 +11,30 @@ jobs:
1111 strategy :
1212 fail-fast : true
1313 matrix :
14- platform : [windows-2022 , ubuntu-latest, macos-13 , macos-14]
14+ platform : [windows-latest , ubuntu-latest, macos-15-intel , macos-14]
1515 env :
1616 CIBW_SKIP : ' pp*'
1717 CIBW_ARCHS : ' auto64'
1818 CIBW_MANYLINUX_X86_64_IMAGE : ' manylinux_2_28'
1919 CIBW_PROJECT_REQUIRES_PYTHON : ' >=3.10'
2020 CIBW_TEST_REQUIRES : ' pytest'
21+ MACOSX_DEPLOYMENT_TARGET : ' 14.0'
2122 defaults :
2223 run :
2324 shell : bash -l {0}
2425
2526 runs-on : ${{ matrix.platform }}
2627
2728 steps :
28- - uses : actions/checkout@v4
29+ - uses : actions/checkout@v5
2930 with :
3031 submodules : true
31- - name : Set up Python version ${{ matrix.version }}
32- uses : actions/setup-python@v4
32+ - name : Set up Python version
33+ uses : actions/setup-python@v6
3334 with :
3435 python-version : " 3.x"
3536 - name : Install OMP (MacOS Intel)
36- if : matrix.platform == 'macos-13 '
37+ if : matrix.platform == 'macos-15-intel '
3738 run : |
3839 brew install llvm@20 libomp
3940 echo "export CC=/usr/local/opt/llvm@20/bin/clang" >> ~/.bashrc
6667 export PATH="$pythonLocation:$PATH"
6768 CIBW_TEST_COMMAND='cd ${pwd}/tmp && python -m pytest tests'
6869 echo "CIBW_TEST_COMMAND=${CIBW_TEST_COMMAND}" >> $GITHUB_ENV
69- python -m pip install cibuildwheel==2.16.5
70+ python -m pip install cibuildwheel==2.23.3
7071 python -m cibuildwheel --output-dir ./wheelhouse
7172 - uses : actions/upload-artifact@v4
7273 with :
0 commit comments