Skip to content

Commit

Permalink
Don't install uvloop on Python 3.11
Browse files Browse the repository at this point in the history
This restriction can be lifted once uvloop works with it.
  • Loading branch information
agronholm committed Mar 30, 2022
1 parent 53c1194 commit 94bc7f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ test = [
"pytest >= 3.9",
"pytest-asyncio",
"pytest-cov",
"uvloop; python_implementation == 'CPython' and platform_system != 'Windows'",
"uvloop; python_version < '3.11' and python_implementation == 'CPython' and platform_system != 'Windows'",
]
doc = [
"Sphinx >= 1.5",
Expand Down

0 comments on commit 94bc7f3

Please sign in to comment.