-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Expand file tree
/
Copy pathmypy.ini
More file actions
15 lines (12 loc) · 452 Bytes
/
mypy.ini
File metadata and controls
15 lines (12 loc) · 452 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
[mypy]
python_version = 3.14
namespace_packages = True
ignore_missing_imports = False
# TODO(https://github.com/googleapis/gapic-generator-python/issues/2563):
# Dependencies that historically lacks py.typed markers
[mypy-google.iam.*]
ignore_missing_imports = True
# Helps mypy navigate the 'google' namespace more reliably in 3.10+
explicit_package_bases = True
# Performance: reuse results from previous runs to speed up 'nox'
incremental = True