From 36b6735faad88a170ad38c7f15fbd6270267283c Mon Sep 17 00:00:00 2001 From: Tim Jensen Date: Sun, 26 Sep 2021 08:45:14 -0500 Subject: [PATCH] Lifting protobuf upper version limit for Python 3, per PR comment --- setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index e1ce14a..382f8f2 100644 --- a/setup.py +++ b/setup.py @@ -26,7 +26,8 @@ install_requires = [ install_extras = { 'client': [ 'gevent>=1.3.0', - 'protobuf>=3.0.0,<3.18.0', + 'protobuf>~3.0; python_version >= "3"', + 'protobuf<3.18.0; python_version < "3"', 'gevent-eventemitter~=2.1', ], }