Skip to content

Commit

Permalink
Merge pull request #5735 from oliver-sanders/mypy-matplotlib
Browse files Browse the repository at this point in the history
actions: exclude mypy with more recent python version
  • Loading branch information
oliver-sanders committed Sep 19, 2023
2 parents bdd2e97 + ccde837 commit 6157644
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/test_fast.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,10 @@ jobs:
flake8
etc/bin/shellchecker
# note: exclude python 3.10+ from mypy checks as these produce false
# positives in installed libraries for python 3.7
- name: Typing
if: startsWith(matrix.os, 'ubuntu')
if: startsWith(matrix.os, 'ubuntu') && startsWith(matrix.python-version, 3.9)
run: mypy

- name: Doctests
Expand Down

0 comments on commit 6157644

Please sign in to comment.