update setup.py to also accept protobuf 3.x

This commit is contained in:
Pavol Rusnak 2016-05-05 20:33:49 +02:00
parent 0341e6f724
commit 7097d1aed6
1 changed files with 1 additions and 1 deletions

View File

@ -29,7 +29,7 @@ setup(
], ],
scripts = ['trezorctl'], scripts = ['trezorctl'],
test_suite='tests', test_suite='tests',
install_requires=['ecdsa>=0.9', 'protobuf==2.6.1', 'mnemonic>=0.8', 'hidapi>=0.7.99'], install_requires=['ecdsa>=0.9', 'protobuf>=2.6.1', 'mnemonic>=0.8', 'hidapi>=0.7.99'],
include_package_data=True, include_package_data=True,
zip_safe=False, zip_safe=False,
classifiers=[ classifiers=[