From b6b37b19b5da315a5abd0b085cb803bba8f6512d Mon Sep 17 00:00:00 2001 From: botbikamordehai2-sketch Date: Thu, 28 May 2026 09:38:38 +0000 Subject: [PATCH] fix: relax protobuf version constraint to support newer versions (closes #76) --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 20a4993..c2d96f5 100644 --- a/setup.py +++ b/setup.py @@ -28,7 +28,7 @@ python_requires=">=3.6", install_requires=[ "Click>=6.2", - "protobuf~=3.6", + "protobuf>=3.6", "requests>=2" ], license=about["__license__"],