From 0eba4a54a85f4d7b4ce3e943c6685e00bf3e8037 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 25 Aug 2025 01:37:04 +0000 Subject: [PATCH] Update protobuf requirement from ~=5.29.5 to ~=6.32.0 Updates the requirements on [protobuf](https://github.com/protocolbuffers/protobuf) to permit the latest version. - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) --- updated-dependencies: - dependency-name: protobuf dependency-version: 6.32.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- requirements.txt | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/requirements.txt b/requirements.txt index 719f920..28ed8bc 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,5 @@ google~=3.0.0 -protobuf~=5.29.5 +protobuf~=6.32.0 grpcio~=1.73.1 python-dotenv~=1.0.1 Faker~=25.8.0 diff --git a/setup.py b/setup.py index 3b2a601..3d7e864 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ packages=find_packages(), install_requires=[ "grpcio>=1.64.1", - "protobuf<6.0.0,>=5.26.1", + "protobuf>=5.26.1,<7.0.0", "google>=3.0", "requests>=2.32.3", "PyJWT>=2.8,<2.10",