Skip to content

Commit bd1f54b

Browse files
authored
fix: Pin protobuf<4.0.0 for Python 2.7 and 3.6 support (#370)
1 parent 4dc5238 commit bd1f54b

File tree

3 files changed

+2
-5
lines changed

3 files changed

+2
-5
lines changed

.circleci/config.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,6 @@ commands:
2020
virtualenv --python=python2.7 --always-copy venv
2121
. venv/bin/activate
2222
pip install 'wheel>=0.29.0'
23-
# Install pinned verison of proobuf first,
24-
# as opentracing in the core requirements
25-
# would pull in a newer one
26-
pip install 'protobuf<4.0.0'
2723
pip install -r requirements.txt
2824
pip install -r <<parameters.requirements>>
2925

instana/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33

44
# Module version file. Used by setup.py and snapshot reporting.
55

6-
VERSION = '1.37.2'
6+
VERSION = '1.37.3'

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,7 @@ def check_setuptools():
6464
'certifi>=2018.4.16',
6565
'fysom>=2.1.2',
6666
'opentracing>=2.3.0',
67+
'protobuf<4.0.0',
6768
'requests>=2.6.0',
6869
'six>=1.12.0',
6970
'urllib3<1.27,>=1.26.5'],

0 commit comments

Comments
 (0)