From e326c9c4c6a3a60c639661bc4c3b8b0e3f42cd03 Mon Sep 17 00:00:00 2001 From: saumil-d Date: Wed, 6 Jul 2022 18:51:37 -0700 Subject: [PATCH 1/2] pin protobuf version --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index f1d5d3c..7f95d67 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ with open('HISTORY.rst') as history_file: history = history_file.read() -requirements = ['requests', 'python-dotenv', 'deprecation', 'protobuf', 'grpcio', 'google-api-python-client'] +requirements = ['requests', 'python-dotenv', 'deprecation', 'protobuf==3.19.4', 'grpcio', 'google-api-python-client'] # removed in 0.7.1 test_requirements = ['pytest'] From 591c83b45fe5dce6cd9625b4def9112fbdf77f90 Mon Sep 17 00:00:00 2001 From: saumil-d Date: Thu, 7 Jul 2022 08:24:39 -0700 Subject: [PATCH 2/2] increment sdk version --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 7f95d67..4eeed87 100644 --- a/setup.py +++ b/setup.py @@ -40,6 +40,6 @@ # removed in 0.7.1 test_suite='tests', # removed in 0.7.1 tests_require=test_requirements, url='https://github.com/modzy/sdk-python', - version='0.7.1', + version='0.7.2', zip_safe=False, )