From 451978da39d49f42f034b6edddac894e609fd865 Mon Sep 17 00:00:00 2001 From: Harry Caufield Date: Fri, 27 May 2022 17:35:49 -0400 Subject: [PATCH] Quick fix for Click dependency `click` >= 8.1 leads to this error during merge: ``` ImportError: cannot import name 'get_terminal_size' from 'click.termui' ``` See also https://github.com/tiangolo/typer/issues/377 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 5b86164..cb03981 100644 --- a/setup.py +++ b/setup.py @@ -60,7 +60,7 @@ def find_version(*file_paths): 'tqdm', 'wget', 'compress_json', - 'click', + 'click==8.0.4', 'pyyaml', 'kgx==1.5.7', 'sphinx',