@@ -14,18 +14,18 @@ jobs:
1414 fail-fast : false
1515 matrix :
1616 python-version :
17- - 3.6
18- - 3.7
19- - 3.8
20- - 3.9
17+ - " 3.8 "
18+ - " 3.9 "
19+ - " 3.10 "
20+ - " 3.11 "
2121 runs-on :
2222 - ubuntu-latest
2323 - macos-latest
2424 runs-on : ${{ matrix.runs-on }}
2525 name : Test • 🐍 ${{ matrix.python-version }} • ${{matrix.runs-on}}
2626 steps :
27- - uses : actions/checkout@v2
28- - uses : actions/setup-python@v2
27+ - uses : actions/checkout@v3
28+ - uses : actions/setup-python@v4
2929 with :
3030 python-version : ${{ matrix.python-version }}
3131
@@ -35,37 +35,42 @@ jobs:
3535 - name : Test package
3636 run : python -m pytest --forked
3737
38- checks_windows :
39- strategy :
40- fail-fast : false
41- matrix :
42- python-version :
43- - 3.8
44- - 3.9
45- runs-on :
46- - windows-latest
47- runs-on : ${{ matrix.runs-on }}
48- name : Test • 🐍 ${{ matrix.python-version }} • ${{matrix.runs-on}}
49- steps :
50- - uses : actions/checkout@v2
51- - uses : actions/setup-python@v2
52- with :
53- python-version : ${{ matrix.python-version }}
54-
55- - name : Install package
56- run : python -m pip install .[test]
57-
58- - name : Test package
59- env :
60- LIBCLANG_PATH : C:\msys64\mingw64\bin\libclang.dll
61- run : python -m pytest -n2
38+ # Commented for now -- msys2 Clang (v15) and the clang Python package (v14) are incompatible
39+ #
40+ # checks_windows:
41+ # strategy:
42+ # fail-fast: false
43+ # matrix:
44+ # python-version:
45+ # - "3.8"
46+ # - "3.9"
47+ # runs-on:
48+ # - windows-latest
49+ # runs-on: ${{ matrix.runs-on }}
50+ # name: Test • 🐍 ${{ matrix.python-version }} • ${{matrix.runs-on}}
51+ # steps:
52+ # - uses: actions/checkout@v3
53+ # - uses: actions/setup-python@v4
54+ # with:
55+ # python-version: ${{ matrix.python-version }}
56+ #
57+ # - name: Install package
58+ # run: python -m pip install .[test]
59+ #
60+ # - name: Install clang
61+ # run: C:\msys64\usr\bin\pacman.exe -S clang64/mingw-w64-clang-x86_64-clang --noconfirm
62+ #
63+ # - name: Test package
64+ # env:
65+ # LIBCLANG_PATH: C:\msys64\clang64\bin\libclang.dll
66+ # run: python -m pytest -n2
6267
6368 dist :
6469 runs-on : ubuntu-latest
6570 name : Build distribution
6671 steps :
67- - uses : actions/checkout@v2
68- - uses : actions/setup-python@v2
72+ - uses : actions/checkout@v3
73+ - uses : actions/setup-python@v4
6974
7075 - name : Build
7176 run : pipx run build
0 commit comments