From 2faea1517f870eb6136d86c37d8fb51b33a24243 Mon Sep 17 00:00:00 2001 From: aszerW Date: Thu, 26 Mar 2026 22:21:15 +0800 Subject: [PATCH] =?UTF-8?q?chore(deps):=20=E6=9B=B4=E6=96=B0HTTP=E8=AF=B7?= =?UTF-8?q?=E6=B1=82=E7=9B=B8=E5=85=B3=E4=BE=9D=E8=B5=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 在requests依赖中添加对socks的支持 - 新增pysocks依赖以支持socks代理 - 保持了requests和urllib3的最低版本要求不变 --- requirements.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/requirements.txt b/requirements.txt index 03978ae..c77e3e4 100644 --- a/requirements.txt +++ b/requirements.txt @@ -11,7 +11,9 @@ loguru>=0.7.0 # ==================== HTTP请求 ==================== requests>=2.28.0 +requests[socks]>=2.28.0 urllib3>=1.26.0 +pysocks>=1.7.0 # ==================== 进度条 ==================== tqdm>=4.65.0