Skip to content

Commit 9a58839

Browse files
committed
Fix the jaspar exclude path and skip the mypy hook on pre-commit.ci
The exclude still pointed at the pre-restructure `_atac` directory, and pre-commit.ci has no `uv` to run the mypy hook with; the GitHub Actions pre-commit job still runs it.
1 parent 738ebbd commit 9a58839

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

.pre-commit-config.yaml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,10 @@ default_stages:
66
- pre-push
77
minimum_pre_commit_version: 2.16.0
88
# Bundled JASPAR motif reference data, not source code.
9-
exclude: ^src/muon/_atac/_ref/jaspar/
9+
exclude: ^src/muon/atac/_ref/jaspar/
10+
ci:
11+
# The mypy hook shells out to uv, which is unavailable on pre-commit.ci.
12+
skip: [mypy]
1013
repos:
1114
- repo: https://github.com/biomejs/pre-commit
1215
rev: v2.5.4

0 commit comments

Comments
 (0)