From 5d908a58b39ffd632feba8ab7da3a3a471f71eaa Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 26 May 2026 04:54:10 +0000 Subject: [PATCH] deps(pip): update grpcio requirement in /clients/deepnode/localserver Updates the requirements on [grpcio](https://github.com/grpc/grpc) to permit the latest version. - [Release notes](https://github.com/grpc/grpc/releases) - [Commits](https://github.com/grpc/grpc/compare/v1.68.0...v1.80.0) --- updated-dependencies: - dependency-name: grpcio dependency-version: 1.80.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- clients/deepnode/localserver/requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clients/deepnode/localserver/requirements.txt b/clients/deepnode/localserver/requirements.txt index dabf62c..112ce9a 100644 --- a/clients/deepnode/localserver/requirements.txt +++ b/clients/deepnode/localserver/requirements.txt @@ -10,7 +10,7 @@ fastapi>=0.115.0 # HTTP API 框架(自动拉取 starlette, pyda uvicorn[standard]>=0.32.0 # ASGI 服务运行([standard] 含 httptools, uvloop, websockets) # ── gRPC 通信 ── -grpcio>=1.68.0 # gRPC 客户端/服务端 +grpcio>=1.80.0 # gRPC 客户端/服务端 protobuf>=5.29.0 # proto 序列化(generated/ 下的 pb2 文件依赖) # ── 配置 / 工具 ──