From 606e5da7cf573e403dd4d52df629e2c264694f30 Mon Sep 17 00:00:00 2001 From: Francesco Faraone Date: Tue, 8 Nov 2022 12:55:23 +0100 Subject: [PATCH] Change != win32 for == linux or darwin --- poetry.lock | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/poetry.lock b/poetry.lock index a1b5f434..2d4f9cb6 100644 --- a/poetry.lock +++ b/poetry.lock @@ -1543,7 +1543,7 @@ test = ["pytest"] [metadata] lock-version = "1.1" python-versions = ">=3.8,<4" -content-hash = "f11c6b73bc28fd1743a76f6e1f6ea8b754a81e50f73b1876806a751d6f87694c" +content-hash = "30f27957c77ad755e0a8e056a862144f4e36bacae876c6914e455f1436eaf8e2" [metadata.files] anvil-uplink = [ diff --git a/pyproject.toml b/pyproject.toml index 19c02e5d..92a7cf85 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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"