We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 90f0cd6 commit 2316654Copy full SHA for 2316654
.github/workflows/pytest.yml
@@ -32,13 +32,6 @@ jobs:
32
pip install poetry
33
poetry install --with dev
34
35
- # mypy doesn't support Python 3.8, so we run it only for 3.9 and above.
36
- # Still check for typing errors for Python 3.8 when running against one of the newer versions.
37
- # See https://mypy.readthedocs.io/en/stable/changelog.html#drop-support-for-python-3-8.
38
- - name: Check for new typing errors for Python 3.8
39
- if: ${{ matrix.python-version == '3.9' }}
40
- run: poetry run mypy --strict --python-version 3.8 .
41
-
42
- name: Check for new typing errors
43
if: ${{ matrix.python-version != '3.8' }}
44
run: poetry run mypy --strict .
0 commit comments