fix(fetch): update to httpx 0.28+ proxy parameter

The httpx library renamed 'proxies' to 'proxy' in version 0.28.0.
This updates the fetch server to use the new parameter name and
removes the version cap on httpx.

Fixes #3287
This commit is contained in:
thecaptain789
2026-02-06 15:25:43 +00:00
parent 10d382798e
commit 8614dff06f
3 changed files with 4 additions and 4 deletions

View File

@@ -16,7 +16,7 @@ classifiers = [
"Programming Language :: Python :: 3.10",
]
dependencies = [
"httpx<0.28",
"httpx>=0.27",
"markdownify>=0.13.1",
"mcp>=1.1.3",
"protego>=0.3.1",