Skip to content

Commit

Permalink
move mypy config to pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcoGorelli committed Feb 20, 2024
1 parent ace18ae commit 0136038
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -84,11 +84,11 @@ exclude_also = [

[tool.mypy]

[tool.mypy.pandas.*]
ignore_missing_imports = true

[tool.mypy.cudf.*]
ignore_missing_imports = true

[tool.mypy.modin.*]
[[tool.mypy.overrides]]
# the pandas API is just too inconsistent for type hinting to be useful.
module = [
"pandas.*",
"cudf.*",
"modin.*",
]
ignore_missing_imports = true

0 comments on commit 0136038

Please sign in to comment.