Skip to content

Commit 12c62d3

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

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

cuda_bindings/pyproject.toml

-6
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

+5
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)