From 2ceef0f07c6529696eea6551ea7f87f77776662d Mon Sep 17 00:00:00 2001 From: Pavol Rusnak Date: Fri, 29 Aug 2014 23:42:35 +0200 Subject: [PATCH] pin protobuf dependency to 2.5.0 --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 7df3dddec..d430d5dd0 100755 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ from setuptools import setup setup( name='trezor', - version='0.5.3', + version='0.5.4', author='Bitcoin TREZOR', author_email='info@bitcointrezor.com', description='Python library for communicating with TREZOR Bitcoin Hardware Wallet', @@ -27,7 +27,7 @@ setup( 'trezorlib.types_pb2', ], test_suite='tests', - install_requires=['ecdsa>=0.9', 'protobuf', 'mnemonic>=0.8', 'hidapi>=0.7.99'], + install_requires=['ecdsa>=0.9', 'protobuf==2.5.0', 'mnemonic>=0.8', 'hidapi>=0.7.99'], include_package_data=True, zip_safe=False, classifiers=[