forked from instadeepai/jumanji
-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
49 lines (47 loc) · 958 Bytes
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
[tool.isort]
profile = "black"
[tool.mypy]
python_version = 3.8
namespace_packages = true
incremental = false
cache_dir = ""
warn_redundant_casts = true
warn_return_any = true
warn_unused_configs = true
warn_unused_ignores = false
allow_redefinition = true
disallow_untyped_calls = true
disallow_untyped_defs = true
disallow_incomplete_defs = true
check_untyped_defs = true
disallow_untyped_decorators = false
strict_optional = true
strict_equality = true
explicit_package_bases = true
follow_imports = "skip"
[[tool.mypy.overrides]]
module = [
"matplotlib.*",
"mpl_toolkits.*",
"gym.*",
"pytest_mock.*",
"numpy.*",
"dm_env.*",
"tree.*",
"pytest.*",
"IPython.*",
"optax.*",
"tqdm.*",
"rlax.*",
"neptune.*",
"tensorboardX.*",
"scipy.*",
"haiku.*",
"hydra.*",
"omegaconf.*",
"huggingface_hub.*",
"requests.*",
"pkg_resources.*",
"PIL.*",
]
ignore_missing_imports = true