https://github.com/GPflow/GPflow
Revision a0df00ca67f074b917f8d12fb3363f9433a20c1e authored by st-- on 10 September 2020, 11:45:58 UTC, committed by GitHub on 10 September 2020, 11:45:58 UTC
Adds Copyright notice and Apache license text (short form) to the preamble of all python files underneath gpflow/.
Also unifies the copyright notice to simply state "The GPflow Contributors" to simplify maintenance of the copyright notices (this does not affect who holds copyright).
1 parent 7b2a0c8
Raw File
Tip revision: a0df00ca67f074b917f8d12fb3363f9433a20c1e authored by st-- on 10 September 2020, 11:45:58 UTC
add license text to all gpflow submodules (#1480)
Tip revision: a0df00c
mypy.ini
[mypy]
ignore_missing_imports = True

; the following modules are not passing mypy, so we're skipping them until they've been fixed up.
; see github issue https://github.com/GPflow/GPflow/issues/1368 for more information. Note that some
; modules that haven't had types added are passing anyway so may not appear below.
;
; remove modules from this skip list when types have been added
[mypy-gpflow.conditionals.*,gpflow.config.*,gpflow.covariances.*,gpflow.expectations.*]
ignore_errors = True

[mypy-gpflow.kernels.*,gpflow.models.*,gpflow.monitor.*,gpflow.optimizers.natgrad,gpflow.optimizers.mcmc,gpflow.utilities.*]
ignore_errors = True

[mypy-gpflow.mean_functions]
ignore_errors = True

[mypy-tests.*]
ignore_errors = True
back to top