From 4c4dabe82a8b81fae9b7af6d6323ab4a1166f7fa Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 17 Jun 2025 04:15:43 +0000 Subject: [PATCH] Update protobuf requirement Updates the requirements on [protobuf](https://github.com/protocolbuffers/protobuf) to permit the latest version. Updates `protobuf` to 6.31.1 - [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/compare/v3.8.0...v6.31.1) --- updated-dependencies: - dependency-name: protobuf dependency-version: 6.31.1 dependency-type: direct:production dependency-group: pip ... Signed-off-by: dependabot[bot] --- python/setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/setup.py b/python/setup.py index bc3d5c9c..11f677a4 100644 --- a/python/setup.py +++ b/python/setup.py @@ -39,7 +39,7 @@ def has_ext_modules(self): license='Apache License, Version 2.0', python_requires='>=3.5,<4', install_requires=[ - 'protobuf>=3.8.0,<4', + 'protobuf>=3.8.0,<7', ], extras_require={ 'tensorflow': ['tensorflow>=1.15,<3'],