forked from allenai/asta-bench
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.cfg
More file actions
52 lines (41 loc) · 1.15 KB
/
Copy pathsetup.cfg
File metadata and controls
52 lines (41 loc) · 1.15 KB
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
50
51
52
[mypy]
# Global options
python_version = 3.11
warn_redundant_casts = True
warn_unused_ignores = True
disallow_any_generics = False
disallow_untyped_defs = False
disallow_incomplete_defs = False
check_untyped_defs = True
disallow_untyped_decorators = False
no_implicit_optional = True
strict_optional = True
warn_return_any = False
warn_unused_configs = True
allow_redefinition = False
follow_untyped_imports = True
# We run in dev image which does not install all optional packages, so ignore
# imports that are missing there for now
[mypy-pyasn1.*]
ignore_missing_imports = True
[mypy-langchain_community.*]
ignore_missing_imports = True
[mypy-langchain_core.*]
ignore_missing_imports = True
[mypy-autogen_agentchat.*]
ignore_missing_imports = True
[mypy-autogen_core.*]
ignore_missing_imports = True
[mypy-autogen_ext.*]
ignore_missing_imports = True
[mypy-smolagents.*]
ignore_missing_imports = True
[mypy-langchain_openai.*]
ignore_missing_imports = True
[mypy-langgraph.*]
ignore_missing_imports = True
[mypy-litellm.*]
ignore_missing_imports = True
# Temporarily ignore errors in specific modules
[mypy-astabench.evals.paper_finder.*]
ignore_errors = True