We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d47cf0c commit e71de63Copy full SHA for e71de63
.pre-commit-config.yaml
@@ -48,9 +48,11 @@ repos:
48
rev: v0.931
49
hooks:
50
- id: mypy
51
- # `properies` & `asv_bench` are copied from setup.cfg.
52
- # `_typed_ops.py` is added since otherwise mypy will complain (but notably only in pre-commit)
53
- exclude: "properties|asv_bench|_typed_ops.py"
+ # Copied from setup.cfg
+ exclude: "properties|asv_bench"
+ # This is slow and so we take it out of the fast-path; requires passing
54
+ # `--hook-stage manual` to pre-commit
55
+ stages: [manual]
56
additional_dependencies: [
57
# Type stubs
58
types-python-dateutil,
0 commit comments