Skip to content

Commit c8fc927

Browse files
committed
ci: fix mistake
1 parent 5de8d80 commit c8fc927

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,8 @@ jobs:
5151
- runs-on: windows-latest
5252
python: pypy3
5353

54-
# PyPy2 7.3.3 segfaults, while 7.3.2 was fine. TODO: investigate
55-
- runs-on: unbuntu-latest
54+
# TODO: PyPy2 7.3.3 segfaults, while 7.3.2 was fine.
55+
- runs-on: ubuntu-latest
5656
python: pypy2
5757

5858
name: "🐍 ${{ matrix.python }} • ${{ matrix.runs-on }} • x64 ${{ matrix.args }}"
@@ -109,7 +109,7 @@ jobs:
109109

110110
- name: C++11 tests
111111
# TODO: Figure out how to load the DLL on Python 3.8+
112-
if: "!(runner.os == 'Windows' && (matrix.python == 3.8 || matrix.python == 3.9))"
112+
if: "!(runner.os == 'Windows' && (matrix.python == 3.8 || matrix.python == 3.9 | matrix.python == '3.10-dev'))"
113113
run: cmake --build . --target cpptest -j 2
114114

115115
- name: Interface test C++11
@@ -137,7 +137,7 @@ jobs:
137137

138138
- name: C++ tests
139139
# TODO: Figure out how to load the DLL on Python 3.8+
140-
if: "!(runner.os == 'Windows' && (matrix.python == 3.8 || matrix.python == 3.9))"
140+
if: "!(runner.os == 'Windows' && (matrix.python == 3.8 || matrix.python == 3.9 | matrix.python == '3.10-dev'))"
141141
run: cmake --build build2 --target cpptest
142142

143143
- name: Interface test

0 commit comments

Comments
 (0)