Skip to content

Commit

Permalink
CI: Don't run linter on Python 3.7
Browse files Browse the repository at this point in the history
Recent Black 24 is not available for Python 3.7, and Black 23 formats
code differently.
  • Loading branch information
amotl committed Mar 29, 2024
1 parent 2f1e124 commit eb460e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
pip install --editable=.[test,develop]
- name: Check code style
if: matrix.python-version != '3.6'
if: matrix.python-version != '3.6' && matrix.python-version != '3.7'
run: |
poe lint
Expand Down

0 comments on commit eb460e4

Please sign in to comment.