@@ -19,15 +19,15 @@ jobs:
1919 runs-on : ${{ matrix.os }}
2020 strategy :
2121 matrix :
22- os : [macos-14 , windows-2019 , ubuntu-latest]
22+ os : [macos-latest , windows-latest , ubuntu-latest]
2323 name : Build CPython ${{ matrix.python-version }}-${{ matrix.os }}
2424 steps :
2525 - uses : actions/checkout@v4
2626 - uses : pypa/cibuildwheel@v2.22.0
2727 env :
2828 CIBW_ARCHS_MACOS : x86_64 universal2
2929 CIBW_TEST_SKIP : ' *universal2:arm64'
30- CIBW_BUILD : " cp38 -macosx_universal2 cp38 -win* cp38 -manylinux_{x86_64,i686}"
30+ CIBW_BUILD : " cp39 -macosx_universal2 cp39 -win* cp39 -manylinux_{x86_64,i686}"
3131 - uses : actions/upload-artifact@v4
3232 with :
3333 name : ${{ matrix.os }}-wheel
3838 runs-on : ${{ matrix.os }}
3939 strategy :
4040 matrix :
41- os : [macos-12 , windows-2019 ]
42- python-version : [3.8, 3.9 , "3.10", "3.11", "3.12", "3.13"]
41+ os : [macos-latest , windows-latest ]
42+ python-version : ["3.9" , "3.10", "3.11", "3.12", "3.13"]
4343 name : Test CPython ${{ matrix.python-version }}-${{ matrix.os }}
4444 steps :
4545 - name : Setup Python
6666 matrix :
6767 os : [ubuntu-latest]
6868 container : ['manylinux2014_i686', 'manylinux2014_x86_64']
69- python-version : ['cp38-cp38',
70- ' cp39-cp39' , 'cp310-cp310', 'cp311-cp311', 'cp312-cp312', 'cp313-cp313']
69+ python-version : ['cp39-cp39', 'cp310-cp310', 'cp311-cp311', 'cp312-cp312', 'cp313-cp313']
7170 name : Test CPython ${{ matrix.python-version }}-${{ matrix.container }}
7271 steps :
7372 - name : Download a previously created wheel
8584 - name : Setup Python
8685 uses : actions/setup-python@v5
8786 with :
88- python-version : 3.8
87+ python-version : 3.9
8988 - name : Build SDist
9089 run : |
9190 python -m pip install build
0 commit comments