File tree Expand file tree Collapse file tree 6 files changed +9
-1
lines changed
Expand file tree Collapse file tree 6 files changed +9
-1
lines changed Original file line number Diff line number Diff line change 1+ Added Winloop to test suite to support in the future -- by :user: `Vizonex `.
Original file line number Diff line number Diff line change @@ -359,6 +359,7 @@ Vincent Maillol
359359Vitalik Verhovodov
360360Vitaly Haritonsky
361361Vitaly Magerya
362+ Vizonex
362363Vladimir Kamarzin
363364Vladimir Kozlovski
364365Vladimir Rutsky
Original file line number Diff line number Diff line change @@ -368,6 +368,7 @@ websocket’s
368368websockets
369369Websockets
370370wildcard
371+ Winloop
371372Workflow
372373ws
373374wsgi
Original file line number Diff line number Diff line change 22
33gunicorn
44uvloop; platform_system != "Windows" and implementation_name == "cpython" # MagicStack/uvloop#14
5+ winloop; platform_system == "Windows" and implementation_name == "cpython"
Original file line number Diff line number Diff line change @@ -43,6 +43,7 @@ pycparser==2.22
4343typing-extensions==4.13.2
4444 # via multidict
4545uvloop==0.21.0 ; platform_system != "Windows" and implementation_name == "cpython"
46+ winloop==0.1.8; platform_system == "Windows" and implementation_name == "cpython"
4647 # via -r requirements/base.in
4748yarl==1.20.0
4849 # via -r requirements/runtime-deps.in
Original file line number Diff line number Diff line change 3434
3535
3636try :
37- import uvloop
37+ if sys .platform == "win32" :
38+ import winloop as uvloop
39+ else :
40+ import uvloop
3841except ImportError :
3942 uvloop = None # type: ignore[assignment]
4043
You can’t perform that action at this time.
0 commit comments