From 347d11e6ea8203c496956465d92e01b706170b53 Mon Sep 17 00:00:00 2001 From: matejcik Date: Wed, 28 Jul 2021 12:37:19 +0200 Subject: [PATCH] chore(python): allow click 8.x for trezorlib --- python/.changelog.d/1682.changed | 1 + python/requirements.txt | 2 +- python/setup.py | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) create mode 100644 python/.changelog.d/1682.changed diff --git a/python/.changelog.d/1682.changed b/python/.changelog.d/1682.changed new file mode 100644 index 000000000..1b42e2621 --- /dev/null +++ b/python/.changelog.d/1682.changed @@ -0,0 +1 @@ +Allow using Click v8.x diff --git a/python/requirements.txt b/python/requirements.txt index 039f0f9fa..b95d98957 100644 --- a/python/requirements.txt +++ b/python/requirements.txt @@ -1,7 +1,7 @@ ecdsa>=0.9 mnemonic>=0.17 requests>=2.4.0 -click>=7,<8 +click>=7,<9 libusb1>=1.6.4 construct>=2.9,!=2.10.55 typing_extensions>=3.7.4 diff --git a/python/setup.py b/python/setup.py index 50eef4cd8..43506d360 100755 --- a/python/setup.py +++ b/python/setup.py @@ -9,7 +9,7 @@ install_requires = [ "ecdsa>=0.9", "mnemonic>=0.17", "requests>=2.4.0", - "click>=7,<8", + "click>=7,<9", "libusb1>=1.6.4", "construct>=2.9", "typing_extensions>=3.7.4",