Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,20 @@ updates:
groups:
routine:
update-types: ["patch", "minor"]
# Major versions of these four break the current stack (numpy 2.x fails at
# import under opencv-python 4.8; zarr 3 and opencv 5 change their APIs). Left
# unignored they each hold a slot in open-pull-requests-limit indefinitely,
# which on 2026-09-01 blocked the numpy update that was actually needed. They
# are taken deliberately, by editing the pin, not by Dependabot.
ignore:
- dependency-name: "numpy"
update-types: ["version-update:semver-major"]
- dependency-name: "opencv-python"
update-types: ["version-update:semver-major"]
- dependency-name: "opencv-python-headless"
update-types: ["version-update:semver-major"]
- dependency-name: "zarr"
update-types: ["version-update:semver-major"]
commit-message:
prefix: "chore(deps)"

Expand Down