Skip to content

Commit eb460e4

Browse files
committed
CI: Don't run linter on Python 3.7
Recent Black 24 is not available for Python 3.7, and Black 23 formats code differently.
1 parent 2f1e124 commit eb460e4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
pip install --editable=.[test,develop]
5555
5656
- name: Check code style
57-
if: matrix.python-version != '3.6'
57+
if: matrix.python-version != '3.6' && matrix.python-version != '3.7'
5858
run: |
5959
poe lint
6060

0 commit comments

Comments
 (0)