From 64335df01e9c82b416ad66e11eb8d76209f0d37a Mon Sep 17 00:00:00 2001 From: Toru Ogawa Date: Tue, 19 Apr 2022 12:08:08 +0900 Subject: [PATCH] downgrade click --- setup.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/setup.py b/setup.py index b59eb17..7ce5548 100644 --- a/setup.py +++ b/setup.py @@ -43,6 +43,9 @@ extras_require={ "lint": [ "black>=19.10b0,<=20.8", + # click>=8.1.0 is incompatible with black. + # https://github.com/psf/black/issues/2964 + "click<8.1.0", "flake8-bugbear", # flake8 doesn't have a dependency for bugbear plugin "flake8>=3.7,<5", "isort>=4.3,<5.2.0",