Don't depend on uvloop on windows (#10060) (#10483)

Co-authored-by: Dave Cunningham <sparkprime@gmail.com>
This commit is contained in:
Ishaan Jaff
2025-05-02 16:09:27 -07:00
committed by GitHub
parent 28cb7cc0ed
commit a816d64bcf
2 changed files with 4 additions and 2 deletions
Generated
+3 -1
View File
@@ -3977,6 +3977,8 @@ version = "0.21.0"
description = "Fast implementation of asyncio event loop on top of libuv"
optional = true
python-versions = ">=3.8.0"
groups = ["main"]
markers = "sys_platform != \"win32\" and extra == \"proxy\""
files = [
{file = "uvloop-0.21.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:ec7e6b09a6fdded42403182ab6b832b71f4edaf7f37a9a0e371a01db5f0cb45f"},
{file = "uvloop-0.21.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:196274f2adb9689a289ad7d65700d37df0c0930fd8e4e743fa4834e850d7719d"},
@@ -4357,4 +4359,4 @@ proxy = ["PyJWT", "apscheduler", "backoff", "boto3", "cryptography", "fastapi",
[metadata]
lock-version = "2.0"
python-versions = ">=3.8.1,<4.0, !=3.9.7"
content-hash = "23a660966fb8924895b28d805c85911a74678c4c10668662d36e54212c3ec00e"
content-hash = "c023dadcdd3e8c25c86653869dee7cd83b92095097cb1dd96497d9c035cb1b20"
+1 -1
View File
@@ -33,7 +33,7 @@ pydantic = "^2.0.0"
jsonschema = "^4.22.0"
uvicorn = {version = "^0.29.0", optional = true}
uvloop = {version = "^0.21.0", optional = true}
uvloop = {version = "^0.21.0", optional = true, markers="sys_platform != 'win32'"}
gunicorn = {version = "^23.0.0", optional = true}
fastapi = {version = "^0.115.5", optional = true}
backoff = {version = "*", optional = true}