From fe877387b21a75205016a236f4bc4ba55115d914 Mon Sep 17 00:00:00 2001 From: Jackson Chen Date: Sat, 25 Mar 2023 17:23:32 +0100 Subject: [PATCH] bump Click version requirement due to 63fa8e5d7366ebc73696af8fbe1292538fb3fcf3, it does not work with Click==7.0, only Click==7.1. I don't know why it doesn't work, but that's for another time to figure out. References: https://github.com/JOJ0/synadm/issues/106 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index c2055ac..a2f2756 100755 --- a/setup.py +++ b/setup.py @@ -49,7 +49,7 @@ ], packages=find_packages(), install_requires=[ - "Click>=7.0,<9.0", + "Click>=7.1,<9.0", "requests", "tabulate", "PyYaml",