We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 31a2586 commit 37dcf79Copy full SHA for 37dcf79
.github/workflows/check.yaml
@@ -32,7 +32,7 @@ jobs:
32
if: steps.cache.outputs.cache-hit == 'true'
33
run: timeout 10s poetry run pip --version || rm -rf .venv
34
- run: poetry install
35
- - run: poetry run mypy -p basedtyping -p tests
+ - run: poetry run mypy -p basedtyping -p tests --python-version ${{ matrix.python-version }}
36
- run: poetry run pytest tests/
37
38
lint:
pyproject.toml
@@ -23,6 +23,7 @@ build-backend = "poetry.core.masonry.api"
23
requires = ["poetry-core>=1.0.8"]
24
25
[tool.mypy]
26
+python_version = 3.8
27
pretty = true
28
show_error_context = true
29
0 commit comments