🐛 Fix: httpx proxy 与 aiohttp timeout 参数新版本修改 (#3152)

This commit is contained in:
Ju4tCode
2024-12-02 15:36:44 +08:00
committed by GitHub
parent 6df8d5b254
commit 9fed938de1
6 changed files with 23 additions and 21 deletions

View File

@ -1388,13 +1388,13 @@ files = []
develop = true
[package.dependencies]
aiohttp = {version = "^3.9.0b0", extras = ["speedups"], optional = true}
aiohttp = {version = "^3.11.0", extras = ["speedups"], optional = true}
anyio = "^4.4.0"
exceptiongroup = "^1.2.2"
fastapi = {version = ">=0.93.0,<1.0.0", optional = true}
httpx = {version = ">=0.20.0,<1.0.0", extras = ["http2"], optional = true}
httpx = {version = ">=0.26.0,<1.0.0", extras = ["http2"], optional = true}
loguru = ">=0.6.0,<1.0.0"
pydantic = ">=1.10.0,<3.0.0,!=2.5.0,!=2.5.1,!=2.10.0"
pydantic = ">=1.10.0,<3.0.0,!=2.5.0,!=2.5.1,!=2.10.0,!=2.10.1"
pygtrie = "^2.4.1"
python-dotenv = ">=0.21.0,<2.0.0"
Quart = {version = ">=0.18.0,<1.0.0", optional = true}
@ -1405,10 +1405,10 @@ websockets = {version = ">=10.0", optional = true}
yarl = "^1.7.2"
[package.extras]
aiohttp = ["aiohttp[speedups] (>=3.9.0b0,<4.0.0)"]
all = ["Quart (>=0.18.0,<1.0.0)", "aiohttp[speedups] (>=3.9.0b0,<4.0.0)", "fastapi (>=0.93.0,<1.0.0)", "httpx[http2] (>=0.20.0,<1.0.0)", "uvicorn[standard] (>=0.20.0,<1.0.0)", "websockets (>=10.0)"]
aiohttp = ["aiohttp[speedups] (>=3.11.0,<4.0.0)"]
all = ["Quart (>=0.18.0,<1.0.0)", "aiohttp[speedups] (>=3.11.0,<4.0.0)", "fastapi (>=0.93.0,<1.0.0)", "httpx[http2] (>=0.26.0,<1.0.0)", "uvicorn[standard] (>=0.20.0,<1.0.0)", "websockets (>=10.0)"]
fastapi = ["fastapi (>=0.93.0,<1.0.0)", "uvicorn[standard] (>=0.20.0,<1.0.0)"]
httpx = ["httpx[http2] (>=0.20.0,<1.0.0)"]
httpx = ["httpx[http2] (>=0.26.0,<1.0.0)"]
quart = ["Quart (>=0.18.0,<1.0.0)", "uvicorn[standard] (>=0.20.0,<1.0.0)"]
websockets = ["websockets (>=10.0)"]

View File

@ -1399,13 +1399,13 @@ files = []
develop = true
[package.dependencies]
aiohttp = {version = "^3.9.0b0", extras = ["speedups"], optional = true}
aiohttp = {version = "^3.11.0", extras = ["speedups"], optional = true}
anyio = "^4.4.0"
exceptiongroup = "^1.2.2"
fastapi = {version = ">=0.93.0,<1.0.0", optional = true}
httpx = {version = ">=0.20.0,<1.0.0", extras = ["http2"], optional = true}
httpx = {version = ">=0.26.0,<1.0.0", extras = ["http2"], optional = true}
loguru = ">=0.6.0,<1.0.0"
pydantic = ">=1.10.0,<3.0.0,!=2.5.0,!=2.5.1,!=2.10.0"
pydantic = ">=1.10.0,<3.0.0,!=2.5.0,!=2.5.1,!=2.10.0,!=2.10.1"
pygtrie = "^2.4.1"
python-dotenv = ">=0.21.0,<2.0.0"
Quart = {version = ">=0.18.0,<1.0.0", optional = true}
@ -1416,10 +1416,10 @@ websockets = {version = ">=10.0", optional = true}
yarl = "^1.7.2"
[package.extras]
aiohttp = ["aiohttp[speedups] (>=3.9.0b0,<4.0.0)"]
all = ["Quart (>=0.18.0,<1.0.0)", "aiohttp[speedups] (>=3.9.0b0,<4.0.0)", "fastapi (>=0.93.0,<1.0.0)", "httpx[http2] (>=0.20.0,<1.0.0)", "uvicorn[standard] (>=0.20.0,<1.0.0)", "websockets (>=10.0)"]
aiohttp = ["aiohttp[speedups] (>=3.11.0,<4.0.0)"]
all = ["Quart (>=0.18.0,<1.0.0)", "aiohttp[speedups] (>=3.11.0,<4.0.0)", "fastapi (>=0.93.0,<1.0.0)", "httpx[http2] (>=0.26.0,<1.0.0)", "uvicorn[standard] (>=0.20.0,<1.0.0)", "websockets (>=10.0)"]
fastapi = ["fastapi (>=0.93.0,<1.0.0)", "uvicorn[standard] (>=0.20.0,<1.0.0)"]
httpx = ["httpx[http2] (>=0.20.0,<1.0.0)"]
httpx = ["httpx[http2] (>=0.26.0,<1.0.0)"]
quart = ["Quart (>=0.18.0,<1.0.0)", "uvicorn[standard] (>=0.20.0,<1.0.0)"]
websockets = ["websockets (>=10.0)"]