@@ -14,18 +14,18 @@ jobs:
14
14
fail-fast : false
15
15
matrix :
16
16
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 "
21
21
runs-on :
22
22
- ubuntu-latest
23
23
- macos-latest
24
24
runs-on : ${{ matrix.runs-on }}
25
25
name : Test • 🐍 ${{ matrix.python-version }} • ${{matrix.runs-on}}
26
26
steps :
27
- - uses : actions/checkout@v2
28
- - uses : actions/setup-python@v2
27
+ - uses : actions/checkout@v3
28
+ - uses : actions/setup-python@v4
29
29
with :
30
30
python-version : ${{ matrix.python-version }}
31
31
@@ -35,37 +35,42 @@ jobs:
35
35
- name : Test package
36
36
run : python -m pytest --forked
37
37
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
62
67
63
68
dist :
64
69
runs-on : ubuntu-latest
65
70
name : Build distribution
66
71
steps :
67
- - uses : actions/checkout@v2
68
- - uses : actions/setup-python@v2
72
+ - uses : actions/checkout@v3
73
+ - uses : actions/setup-python@v4
69
74
70
75
- name : Build
71
76
run : pipx run build
0 commit comments