We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e2682ad commit 12c62d3Copy full SHA for 12c62d3
cuda_bindings/pyproject.toml
@@ -109,9 +109,3 @@ exclude = ["cuda/bindings/_version.py"]
109
"UP022",
110
"E402", # module level import not at top of file
111
"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
@@ -105,3 +105,8 @@ exclude = ["cuda/core/_version.py"]
105
[tool.ruff.lint.per-file-ignores]
106
"__init__.py" = ["F401"]
107
"setup.py" = ["F401"]
108
+
+[[tool.mypy.overrides]]
+module = ["Cython", "llvmlite"]
+ignore_missing_imports = true
+follow_imports = "skip"
0 commit comments