From 91165e5b710b8a91afbc009e53757d8dc853228d Mon Sep 17 00:00:00 2001 From: Mat Silverstein Date: Mon, 27 Jul 2026 21:08:13 +0000 Subject: [PATCH] chore(dependabot): ignore ort + ndarray (pinned for pyannote-rs compat) The cargo-minor-patch group failed on every run (#545, #572, #578) trying to bump ort rc.10->rc.12 / ndarray 0.16->0.17, which breaks the diarize build because pyannote-rs 0.3.4 requires ndarray 0.16. Both are intentionally pinned (see crates/core/Cargo.toml), so ignore them in the group. Stops the recurring red cargo group. Co-Authored-By: Claude Opus 4.8 --- .github/dependabot.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 3597e7cd..fe5d9d0a 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -16,6 +16,14 @@ updates: interval: weekly day: monday open-pull-requests-limit: 5 + # ort and ndarray are intentionally pinned for pyannote-rs compat: ort rc.12 + # switched to ndarray 0.17, which conflicts with pyannote-rs's ndarray 0.16 + # (see crates/core/Cargo.toml). Bumping either breaks the diarize build, so + # the cargo-minor-patch group failed repeatedly (#545, #572, #578) until they + # were ignored here. Revisit when pyannote-rs supports ndarray 0.17. + ignore: + - dependency-name: "ort" + - dependency-name: "ndarray" groups: cargo-minor-patch: patterns: ["*"]