We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The culprit seems to be
- name: Check with mypy if: ${{ !startsWith(matrix.python-version, 'pypy') && matrix.python-version >= '3.7' }} run: mypy
The comparison is string to string. Therefore 3.10 < 3.7 (1<7).
3.10 < 3.7
The version comparison can be entirely removed, as we don't support < 3.7 anymore.
- name: Check with mypy - if: ${{ !startsWith(matrix.python-version, 'pypy') && matrix.python-version >= '3.7' }} + if: ${{ !startsWith(matrix.python-version, 'pypy') }} run: mypy
The text was updated successfully, but these errors were encountered:
Mulugruntz
Successfully merging a pull request may close this issue.
The culprit seems to be
The comparison is string to string. Therefore
3.10 < 3.7
(1<7).The version comparison can be entirely removed, as we don't support < 3.7 anymore.
The text was updated successfully, but these errors were encountered: