Skip to content

Commit 718470d

Browse files
committed
don't test uvloop on 3.14
1 parent ef32802 commit 718470d

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

.github/workflows/ci.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -138,9 +138,13 @@ jobs:
138138
- name: Build
139139
run: cargo build --features=${{env.features}} --verbose --target ${{ matrix.platform.rust-target }}
140140

141-
# uvloop doesn't compile under Windows and PyPy, nor for free-threaded Python
142-
- if: ${{ matrix.platform.os != 'windows-latest' && !startsWith(matrix.python-version, 'pypy') && !endsWith(matrix.python-version, 't') }}
143-
name: Install pyo3-asyncio test dependencies
141+
# uvloop doesn't compile under
142+
# Windows, https://github.com/MagicStack/uvloop/issues/536,
143+
# nor PyPy, https://github.com/MagicStack/uvloop/issues/537
144+
# nor for free-threaded Python, see https://github.com/MagicStack/uvloop/issues/642
145+
# nor on 3.14, see https://github.com/MagicStack/uvloop/issues/637
146+
- if: ${{ matrix.platform.os != 'windows-latest' && !startsWith(matrix.python-version, 'pypy') && !endsWith(matrix.python-version, 't') && !startsWith(matrix.python-version, '3.14') }}
147+
name: Install uvloop
144148
run: |
145149
python -m pip install -U uvloop
146150

0 commit comments

Comments
 (0)