@@ -14,12 +14,15 @@ jobs:
1414
1515 steps :
1616 - uses : actions/checkout@v3
17- - uses : actions/setup-python@v2
17+
18+ - uses : actions/setup-python@v4
19+ with :
20+ python-version : ' 3.10'
1821
1922 - name : Build wheels
20- uses : pypa/cibuildwheel@v2.3.1
23+ uses : pypa/cibuildwheel@v2.11.2
2124 env :
22- CIBW_BUILD : cp37 -* cp38 -* cp39-* cp310 -*
25+ CIBW_BUILD : cp39 -* cp310 -* cp311 -*
2326 CIBW_SKIP : " *-win32 *-manylinux_i686 *-musllinux_*"
2427 CIBW_MANYLINUX_X86_64_IMAGE : manylinux2014
2528 CIBW_BEFORE_ALL_LINUX : bin/cibw_before_build_linux.sh
3134 LD_LIBRARY_PATH=$(pwd)/.local/lib:$LD_LIBRARY_PATH
3235 CIBW_TEST_COMMAND : python -c 'import flint; print(str(flint.fmpz(2)))'
3336
34- - uses : actions/upload-artifact@v2
37+ - uses : actions/upload-artifact@v3
3538 with :
3639 path : wheelhouse/*.whl
3740
@@ -43,11 +46,11 @@ jobs:
4346 fail-fast : false
4447 matrix :
4548 os : [ubuntu-20.04, macOS-10.15]
46- python-version : ['3.7 ', '3.8 ', '3.9', '3.10 ']
49+ python-version : ['3.9 ', '3.10 ', '3.11 ']
4750
4851 steps :
49- - uses : actions/checkout@v2
50- - uses : actions/setup-python@v2
52+ - uses : actions/checkout@v3
53+ - uses : actions/setup-python@v4
5154 with :
5255 python-version : ${{ matrix.python-version }}
5356 - uses : actions/download-artifact@v3
0 commit comments