Browse Source

Setting upper limit on protobuf version to keep legacy Python compatibility because protobuf version 3.18 dropped 2.7 support

pull/359/head
Tim Jensen 4 years ago
parent
commit
0bc66ee0fd
No known key found for this signature in database GPG Key ID: AF7622AC8D9CB25E
  1. 2
      setup.py

2
setup.py

@ -26,7 +26,7 @@ install_requires = [
install_extras = {
'client': [
'gevent>=1.3.0',
'protobuf>=3.0.0',
'protobuf>=3.0.0,<3.18.0',
'gevent-eventemitter~=2.1',
],
}

Loading…
Cancel
Save