File tree Expand file tree Collapse file tree 1 file changed +9
-15
lines changed
Expand file tree Collapse file tree 1 file changed +9
-15
lines changed Original file line number Diff line number Diff line change @@ -31,32 +31,26 @@ build-backend = "hatchling.build"
3131packages = [" src/dacos" ]
3232
3333[tool .mypy ]
34- strict = true
35- disallow_any_unimported = true
36- disallow_any_decorated = false
37- disallow_any_explicit = false
38- disallow_any_generics = true
39- disallow_subclassing_any = true
40- disallow_untyped_calls = true
41- disallow_untyped_defs = true
42- disallow_incomplete_defs = true
34+ python_version = " 3.12"
4335check_untyped_defs = true
44- warn_redundant_casts = true
45- warn_unused_ignores = true
46- warn_return_any = true
36+ disallow_untyped_calls = false
37+ disallow_untyped_defs = false
38+ warn_return_any = false
39+ disallow_any_generics = false
4740no_implicit_optional = true
48- disallow_untyped_decorators = false
49- warn_unreachable = false
5041
5142[[tool .mypy .overrides ]]
5243module = [
5344 " numba.*" ,
5445 " scipy.*" ,
5546 " statsmodels.*" ,
56- " llvmlite.*"
47+ " llvmlite.*" ,
48+ " numpy.*" ,
49+ " polars.*"
5750]
5851ignore_missing_imports = true
5952
53+
6054[tool .ruff ]
6155line-length = 120
6256target-version = " py312"
You can’t perform that action at this time.
0 commit comments