Skip to content

Commit 3b570e0

Browse files
author
Andrew J Westlake
committed
Changed to prevent uvloop install under Python 3.11-dev due to build error
1 parent fe19534 commit 3b570e0

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,8 @@ jobs:
139139
- name: Build
140140
run: cargo build --features=${{env.features}} --verbose --target ${{ matrix.platform.rust-target }}
141141

142-
- if: matrix.platform.os != 'windows-latest'
142+
# uvloop doesn't compile under Windows or Python 3.11-dev
143+
- if: ${{ matrix.platform.os != 'windows-latest' && matrix.python-version != "3.11-dev" }}
143144
name: Install pyo3-asyncio test dependencies
144145
run: |
145146
python -m pip install -U uvloop

0 commit comments

Comments
 (0)