https://github.com/GPflow/GPflow
Revision 22c6666fe4c760130b1785d27ff9cec2546a86fd authored by Jesper Nielsen on 28 June 2022, 14:06:14 UTC, committed by GitHub on 28 June 2022, 14:06:14 UTC
1 parent f67470e
Raw File
Tip revision: 22c6666fe4c760130b1785d27ff9cec2546a86fd authored by Jesper Nielsen on 28 June 2022, 14:06:14 UTC
Consistently raise errors where full_output_cov isn't supported. (#1918)
Tip revision: 22c6666
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