Skip to content

Commit 66dd94b

Browse files
committed
Make Black manually install
1 parent 7292274 commit 66dd94b

2 files changed

Lines changed: 4 additions & 1 deletion

File tree

.github/workflows/test.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,8 @@ jobs:
3131
- name: Run Black check for formatting
3232
if: ${{ matrix.python-version != '3.5' }}
3333
run: |
34+
# Need to manually install Black while we support Python 3.5
35+
pip install black
3436
black --check .
3537
3638
- name: Test with pytest

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@
1010

1111
TESTS_REQUIRE = [
1212
'pytest',
13-
'black'
13+
# Need to manually install Black while we support Python 3.5
14+
# 'black'
1415
]
1516

1617
EXTRAS_REQUIRE = {

0 commit comments

Comments
 (0)