Skip to content

Commit dbf8c7b

Browse files
committed
Fix CI
Mypy was failing because the new version requires some type packages to be installed even when `ignore_missing_imports` is set to `true`.
1 parent b3c3195 commit dbf8c7b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tox.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ python =
88
3.6: py36, coverage-report
99
3.7: py37, coverage-report
1010
3.8: py38, coverage-report
11-
3.9: py39, mypy, lint, manifest, coverage-report
11+
3.9: py39, lint, manifest, coverage-report
1212
pypy2: pypy, coverage-report
1313
pypy3: pypy3, coverage-report
1414

@@ -27,7 +27,7 @@ commands = coverage run --parallel -m pytest {posargs}
2727
skip_install = true
2828
deps =
2929
flake8
30-
mypy
30+
mypy<0.900
3131
commands =
3232
flake8 src tests
3333
mypy --python-version=3.9 src tests

0 commit comments

Comments
 (0)