From 2efd03948d0b986a5d9b1a85381fb11369903916 Mon Sep 17 00:00:00 2001 From: Chayim Date: Thu, 24 Apr 2025 15:14:56 +0300 Subject: [PATCH] Update setup.py attempting to update protobuf to be more variable. At the very least this helps solve issues where a newer version of protobuf is needed (due to ortools and other python versions). Signed-off-by: Chayim --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 85fece3a2..3361c6911 100644 --- a/setup.py +++ b/setup.py @@ -82,7 +82,7 @@ def run(self): author='ONNX', author_email='onnx-technical-discuss@lists.lfaidata.foundation', url='https://github.com/onnx/tensorflow-onnx', - install_requires=['numpy>=1.14.1', 'onnx>=1.4.1', 'requests', 'six', 'flatbuffers>=1.12', 'protobuf~=3.20'], + install_requires=['numpy>=1.14.1', 'onnx>=1.4.1', 'requests', 'six', 'flatbuffers>=1.12', 'protobuf>=3.20'], classifiers=[ 'Development Status :: 5 - Production/Stable', 'Intended Audience :: Developers',