Skip to content

Commit

Permalink
CI: Do not run MyPy on Python 3.6/3.7.
Browse files Browse the repository at this point in the history
  • Loading branch information
danieldk committed Feb 7, 2024
1 parent a289e4a commit 5b343e7
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,9 @@ jobs:
- name: Run mypy
run: python -m mypy thinc --no-implicit-reexport
if: matrix.python_version != '3.6'
if: |
matrix.python_version != '3.6' ||
matrix.python_version != '3.7'
- name: Delete source directory
run: rm -rf thinc
Expand Down

0 comments on commit 5b343e7

Please sign in to comment.