Skip to content

Commit

Permalink
Quick fix for Click dependency
Browse files Browse the repository at this point in the history
`click` >= 8.1 leads to this error during merge:
```
ImportError: cannot import name 'get_terminal_size' from 'click.termui'
```
See also fastapi/typer#377
  • Loading branch information
caufieldjh authored May 27, 2022
1 parent 705c994 commit 451978d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ def find_version(*file_paths):
'tqdm',
'wget',
'compress_json',
'click',
'click==8.0.4',
'pyyaml',
'kgx==1.5.7',
'sphinx',
Expand Down

0 comments on commit 451978d

Please sign in to comment.