Skip to content

Commit

Permalink
Make Black manually install
Browse files Browse the repository at this point in the history
  • Loading branch information
alexgleith committed Jun 29, 2022
1 parent 7292274 commit 66dd94b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@ jobs:
- name: Run Black check for formatting
if: ${{ matrix.python-version != '3.5' }}
run: |
# Need to manually install Black while we support Python 3.5
pip install black
black --check .
- name: Test with pytest
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@

TESTS_REQUIRE = [
'pytest',
'black'
# Need to manually install Black while we support Python 3.5
# 'black'
]

EXTRAS_REQUIRE = {
Expand Down

0 comments on commit 66dd94b

Please sign in to comment.