From 2a0c0ed18df6f70ccb73ee271040f505d1d992c0 Mon Sep 17 00:00:00 2001 From: UncleCode Date: Sun, 8 Jun 2025 10:06:38 +0200 Subject: [PATCH] chore(deps): add httpx extras (#1195) --- deploy/docker/requirements.txt | 1 + pyproject.toml | 1 + requirements.txt | 3 ++- 3 files changed, 4 insertions(+), 1 deletion(-) diff --git a/deploy/docker/requirements.txt b/deploy/docker/requirements.txt index dd489e28..d463c641 100644 --- a/deploy/docker/requirements.txt +++ b/deploy/docker/requirements.txt @@ -14,3 +14,4 @@ anyio==4.9.0 PyJWT==2.10.1 mcp>=1.6.0 websockets>=15.0.1 +httpx[http2]>=0.27.2 diff --git a/pyproject.toml b/pyproject.toml index 5abfb460..fc961d2b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -36,6 +36,7 @@ dependencies = [ "rich>=13.9.4", "cssselect>=1.2.0", "httpx>=0.27.2", + "httpx[http2]>=0.27.2", "fake-useragent>=2.0.3", "click>=8.1.7", "pyperclip>=1.8.2", diff --git a/requirements.txt b/requirements.txt index 0bb596d1..3a93e6a6 100644 --- a/requirements.txt +++ b/requirements.txt @@ -22,4 +22,5 @@ nltk>=3.9.1 rich>=13.9.4 cssselect>=1.2.0 chardet>=5.2.0 -brotli>=1.1.0 \ No newline at end of file +brotli>=1.1.0 +httpx[http2]>=0.27.2