Update to mypy 0.730
We can't use specific type ignores yet as there is no pyflakes release with this change in: https://github.com/PyCQA/pyflakes/pull/455
This commit is contained in:
parent
c397e9326b
commit
c09c1fb006
|
|
@ -1,6 +1,6 @@
|
|||
# This file is automatically generated by scripts/dev/recompile_requirements.py
|
||||
|
||||
mypy==0.720
|
||||
mypy==0.730
|
||||
mypy-extensions==0.4.1
|
||||
# PyQt5==5.11.3
|
||||
# PyQt5-sip==4.19.19
|
||||
|
|
|
|||
4
mypy.ini
4
mypy.ini
|
|
@ -22,6 +22,10 @@ warn_unreachable = True
|
|||
# Other strictness flags
|
||||
strict_equality = True
|
||||
|
||||
# Output
|
||||
show_error_codes = True
|
||||
pretty = True
|
||||
|
||||
[mypy-colorama]
|
||||
# https://github.com/tartley/colorama/issues/206
|
||||
ignore_missing_imports = True
|
||||
|
|
|
|||
Loading…
Reference in New Issue