Skip to content

Commit 5223afd

Browse files
committed
Fix lint workflow: pin click<8.1.0 for black==20.8b1 compatibility
black==20.8b1 imports click._unicodefun which was removed in click 8.1.0. Pin click to a compatible version before installing [test] extras.
1 parent 45fe45e commit 5223afd

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

.github/workflows/check-formatting.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ jobs:
2020
run: |
2121
python -m pip install --upgrade pip setuptools wheel
2222
python setup.py install_egg_info
23+
pip install "click<8.1.0"
2324
pip install -e .[test]
2425
- name: Check code format with black and isort
2526
run: |

0 commit comments

Comments
 (0)