From f8f8c1174f82880bd8b3ec1ed8e7d94d315c7158 Mon Sep 17 00:00:00 2001 From: repair-agent Date: Thu, 26 Feb 2026 10:45:57 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E6=B7=BB=E5=8A=A0=20httpx=20=E4=BE=9D?= =?UTF-8?q?=E8=B5=96=EF=BC=8C=E4=BF=AE=E5=A4=8D=20API=20=E5=90=AF=E5=8A=A8?= =?UTF-8?q?=E5=B4=A9=E6=BA=83?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit gitea_client.py 依赖 httpx 但未列入 requirements.txt, 导致 Docker 镜像中缺少该模块,API 启动时 import 失败。 Co-Authored-By: Claude Opus 4.6 --- requirements.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/requirements.txt b/requirements.txt index f5b38f1..6e5eaaa 100644 --- a/requirements.txt +++ b/requirements.txt @@ -4,3 +4,4 @@ sqlmodel psycopg2-binary asyncpg python-dotenv +httpx