Skip to content

Commit

Permalink
Merge pull request #176 from cloudblue/uvloop_only_linux_darwin
Browse files Browse the repository at this point in the history
Change != win32 for == linux or darwin
  • Loading branch information
marcserrat authored Nov 8, 2022
2 parents 6e15980 + 606e5da commit 3a1d175
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ jinja2-time = "^0.2.0"
connect-eaas-core = ">=26.10,<27"
rich = "^12.4.1"
poetry-core = "^1.3.0"
uvloop = { version = "^0.16.0", markers = "sys_platform != 'win32'" }
uvloop = { version = "^0.16.0", markers = "sys_platform == \"linux\" or sys_platform == \"darwin\"" }

[tool.poetry.dev-dependencies]
pytest = "^6.1.2"
Expand Down

0 comments on commit 3a1d175

Please sign in to comment.