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",