swh:1:snp:6298e170750eb9cfb13fbd6f84b11ca6a6738b27
Raw File
Tip revision: 4f1f4a83d97041737148431db1c4f1e967bd5802 authored by Jesper Nielsen on 20 September 2022, 12:33:56 UTC
Prepare for release 2.6.0. (#1979)
Tip revision: 4f1f4a8
mypy.ini
[mypy]
show_error_codes = True
; First we turn on *all the checks*, and then we turn off those that are too annoying.
strict = True
ignore_missing_imports = True
disallow_subclassing_any = False
disallow_untyped_calls = False
disallow_untyped_decorators = False
; This is needed because version 1.20.0 of NumPy introduces typing, so some ignores are necessary /
; unnecessary depending on the version of numpy:
warn_unused_ignores = False
back to top