We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3cbd21a commit 0c63662Copy full SHA for 0c63662
.pre-commit-config.yaml
@@ -34,7 +34,6 @@ repos:
34
rev: v0.812
35
hooks:
36
- id: mypy
37
- exclude: "properties|asv_bench"
38
# run this occasionally, ref discussion https://github.com/pydata/xarray/pull/3194
39
# - repo: https://github.com/asottile/pyupgrade
40
# rev: v1.22.1
setup.cfg
@@ -237,7 +237,11 @@ ignore_missing_imports = True
237
# be going away soon anyways)
238
[mypy-xarray.core.pycompat]
239
ignore_errors = True
240
-
+# These also contain non-xarray code.
241
+[mypy-properties.*]
242
+ignore_errors = True
243
+[mypy-asv_bench.*]
244
245
246
[aliases]
247
test = pytest
0 commit comments