Disable uvloop for windows

This commit is contained in:
Alex Root Junior 2020-01-22 00:14:14 +02:00
parent e9e83ee392
commit 58b6b3e0fe
2 changed files with 73 additions and 70 deletions

View file

@ -27,11 +27,11 @@ aiohttp = "^3.6"
pydantic = "^1.2"
Babel = "^2.7"
aiofiles = "^0.4.0"
uvloop = {version = "^0.14.0", optional = true}
uvloop = {version = "^0.14.0", markers = "sys_platform == 'darwin' or sys_platform == 'linux'", optional = true}
async_lru = "^1.0"
[tool.poetry.dev-dependencies]
uvloop = "^0.14.0"
uvloop = {version = "^0.14.0", markers = "sys_platform == 'darwin' or sys_platform == 'linux'"}
pytest = "^5.3"
pytest-html = "^2.0"
pytest-asyncio = "^0.10.0"