forked from aesara-devs/aesara
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
268 lines (214 loc) · 5.39 KB
/
setup.cfg
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
[flake8]
select = C,E,F,W
ignore = E203,E231,E501,E741,W503,W504,C901
max-line-length = 88
per-file-ignores =
**/__init__.py:F401,E402,F403
aesara/tensor/linalg.py:F401,F403
aesara/scalar/basic_scipy.py:E402,F403,F401
aesara/graph/toolbox.py:E402,F403,F401
aesara/link/jax/jax_dispatch.py:E402,F403,F401
aesara/link/jax/jax_linker.py:E402,F403,F401
aesara/sparse/sandbox/sp2.py:F401
tests/tensor/test_math_scipy.py:E402
tests/sparse/test_basic.py:E402
tests/sparse/test_opt.py:E402
tests/sparse/test_sp2.py:E402
tests/sparse/test_utils.py:E402,F401
tests/sparse/sandbox/test_sp.py:E402,F401
tests/scalar/test_basic_sympy.py:E402
aesara/graph/unify.py:F811
exclude =
versioneer.py
doc/
aesara/_version.py
[coverage:run]
omit =
aesara/_version.py
tests/*
aesara/assert_op.py
aesara/link/jax/jax_linker.py
aesara/link/jax/jax_dispatch.py
aesara/graph/toolbox.py
aesara/scalar/basic_scipy.py
branch = True
relative_files = true
[coverage:report]
omit =
aesara/_version.py
tests/*
exclude_lines =
pragma: no cover
if TYPE_CHECKING:
show_missing = 1
[versioneer]
VCS = git
style = pep440
versionfile_source = aesara/_version.py
versionfile_build = aesara/_version.py
tag_prefix = rel-
[tool:pytest]
addopts = --durations=50
testpaths = tests/
[pylint]
max-line-length = 88
[pylint.messages_control]
disable = C0330, C0326
[isort]
profile = black
lines_after_imports = 2
lines_between_sections = 1
honor_noqa = True
skip_gitignore = True
skip = aesara/version.py, **/__init__.py
[mypy]
ignore_missing_imports = True
no_implicit_optional = True
check_untyped_defs = False
strict_equality = True
warn_redundant_casts = True
warn_unused_configs = True
warn_unused_ignores = True
warn_return_any = True
warn_no_return = False
warn_unreachable = True
show_error_codes = True
allow_redefinition = False
files = aesara,tests
[mypy-versioneer]
check_untyped_defs = False
[mypy-doc.*]
ignore_errors = True
check_untyped_defs = False
[mypy-setup]
ignore_errors = True
check_untyped_defs = False
[mypy-tests.*]
ignore_errors = True
check_untyped_defs = False
[mypy-aesara._version]
ignore_errors = True
check_untyped_defs = False
[mypy-aesara.compile.mode]
ignore_errors = True
check_untyped_defs = False
[mypy-aesara.compile.builders]
ignore_errors = True
check_untyped_defs = False
[mypy-aesara.compile.sharedvalue]
ignore_errors = True
check_untyped_defs = False
[mypy-aesara.compile.compilelock]
ignore_errors = True
check_untyped_defs = False
[mypy-aesara.compile.function.pfunc]
ignore_errors = True
check_untyped_defs = False
[mypy-aesara.compile.function.types]
ignore_errors = True
check_untyped_defs = False
[mypy-aesara.compile.debugmode]
ignore_errors = True
check_untyped_defs = False
[mypy-aesara.tensor.type]
ignore_errors = True
check_untyped_defs = False
[mypy-aesara.tensor.var]
ignore_errors = True
check_untyped_defs = False
[mypy-aesara.tensor.basic]
ignore_errors = True
check_untyped_defs = False
[mypy-aesara.tensor.elemwise]
ignore_errors = True
check_untyped_defs = False
[mypy-aesara.tensor.math]
ignore_errors = True
check_untyped_defs = False
[mypy-aesara.tensor.basic_opt]
ignore_errors = True
check_untyped_defs = False
[mypy-aesara.tensor.subtensor]
ignore_errors = True
check_untyped_defs = False
[mypy-aesara.tensor.shape]
ignore_errors = True
check_untyped_defs = False
[mypy-aesara.tensor.extra_ops]
ignore_errors = True
check_untyped_defs = False
[mypy-aesara.tensor.type_other]
ignore_errors = True
check_untyped_defs = False
[mypy-aesara.tensor.blas]
ignore_errors = True
check_untyped_defs = False
[mypy-aesara.tensor.blas_headers]
ignore_errors = True
check_untyped_defs = False
[mypy-aesara.tensor.slinalg]
ignore_errors = True
check_untyped_defs = False
[mypy-aesara.tensor.sharedvar]
ignore_errors = True
check_untyped_defs = False
[mypy-aesara.tensor.math_opt]
ignore_errors = True
check_untyped_defs = False
[mypy-aesara.tensor.blas_c]
ignore_errors = True
check_untyped_defs = False
[mypy-aesara.tensor.random.op]
ignore_errors = True
check_untyped_defs = False
[mypy-aesara.tensor.random.basic]
ignore_errors = True
check_untyped_defs = False
[mypy-aesara.tensor.random.utils]
ignore_errors = True
check_untyped_defs = False
[mypy-aesara.link.numba.dispatch.extra_ops]
ignore_errors = True
check_untyped_defs = False
[mypy-aesara.link.numba.dispatch.elemwise]
ignore_errors = True
check_untyped_defs = False
[mypy-aesara.link.numba.dispatch.random]
ignore_errors = True
check_untyped_defs = False
[mypy-aesara.link.jax.dispatch]
ignore_errors = True
check_untyped_defs = False
[mypy-aesara.raise_op]
ignore_errors = True
check_untyped_defs = False
[mypy-aesara.printing]
ignore_errors = True
check_untyped_defs = False
[mypy-aesara.tensor.nnet.conv3d2d]
ignore_errors = True
check_untyped_defs = False
[mypy-aesara.tensor.nnet.neighbours]
ignore_errors = True
check_untyped_defs = False
[mypy-aesara.tensor.nnet.abstract_conv]
ignore_errors = True
check_untyped_defs = False
[mypy-aesara.tensor.nnet.ctc]
ignore_errors = True
check_untyped_defs = False
[mypy-aesara.sandbox.*]
ignore_errors = True
check_untyped_defs = False
[mypy-aesara.ifelse]
ignore_errors = True
check_untyped_defs = False
[mypy-aesara.typed_list.*]
ignore_errors = True
check_untyped_defs = False
[mypy-aesara.sparse.basic]
ignore_errors = True
check_untyped_defs = False
[mypy-aesara.sparse.sharedvar]
ignore_errors = True
check_untyped_defs = False