Skip to content

Commit

Permalink
Disable mypy run in CI for Python 3.7
Browse files Browse the repository at this point in the history
  • Loading branch information
brunato committed Mar 4, 2022
1 parent 650b97c commit b36f773
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/test-elementpath.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
pip install flake8
flake8 elementpath --max-line-length=100 --statistics
- name: Lint with mypy
if: ${{ matrix.python-version != 'pypy-37' }}
if: ${{ matrix.python-version != '3.7' && matrix.python-version == 'pypy-37' }}
run: |
pip install mypy==0.931
mypy --show-error-codes elementpath
Expand Down

0 comments on commit b36f773

Please sign in to comment.