From d5e238144fd9743c5b87a04f0bb1262ce9e738c8 Mon Sep 17 00:00:00 2001 From: fvollmer Date: Thu, 25 Apr 2019 19:44:56 +0200 Subject: [PATCH] Require click version >=7 (#503) The command line interface is different for versions <7 (underscores instead of dash, see https://github.com/pallets/click/issues/1123). The documentation only documents the commands with dash. So click>=7 is required. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index bf705cb36..538558064 100644 --- a/setup.py +++ b/setup.py @@ -46,7 +46,7 @@ def readme(): install_requires=[ 'construct', - 'click', + 'click>=7', 'cryptography', 'zeroconf', 'attrs',