Skip to content

Commit 12c62d3

Browse files
committed
Move pyproject.toml config
1 parent e2682ad commit 12c62d3

2 files changed

Lines changed: 5 additions & 6 deletions

File tree

cuda_bindings/pyproject.toml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -109,9 +109,3 @@ exclude = ["cuda/bindings/_version.py"]
109109
"UP022",
110110
"E402", # module level import not at top of file
111111
"F841"] # F841 complains about unused variables, but some assignments have side-effects that could be useful for tests (func calls for example)
112-
113-
114-
[[tool.mypy.overrides]]
115-
module = ["Cython", "llvmlite"]
116-
ignore_missing_imports = true
117-
follow_imports = "skip"

cuda_core/pyproject.toml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -105,3 +105,8 @@ exclude = ["cuda/core/_version.py"]
105105
[tool.ruff.lint.per-file-ignores]
106106
"__init__.py" = ["F401"]
107107
"setup.py" = ["F401"]
108+
109+
[[tool.mypy.overrides]]
110+
module = ["Cython", "llvmlite"]
111+
ignore_missing_imports = true
112+
follow_imports = "skip"

0 commit comments

Comments
 (0)