From eae2db749dab5eb0739232c5f2c6c8a81fa5d307 Mon Sep 17 00:00:00 2001 From: Domenico Iezzi Date: Tue, 13 Mar 2018 22:04:51 +0100 Subject: [PATCH] setup.py: ensure protobuf version is recent This should avoid problems like issue #34 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 0d34978..4e4d6ec 100644 --- a/setup.py +++ b/setup.py @@ -10,5 +10,5 @@ setup(name='gpapi', packages=['gpapi'], package_data={'gpapi': ['device.properties']}, install_requires=['pycryptodome', - 'protobuf', + 'protobuf>=3.5.2', 'requests'])