Skip to content
Merged
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
6 changes: 6 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@ version: 2
updates:
- package-ecosystem: "uv"
directory: "/"
# uv.lock is what CI actually tests; the floors in pyproject.toml are hand-written and say
# what a consumer may install against. Without this, a weekly bump raises those floors to
# whatever it just locked -- #15 turned openai>=1.50 into >=3.11.0 across ten lines, and
# narrowed all eight vendor extras for a reason no test ever asked for. Lock-only keeps the
# two apart: dependabot moves the lock, a person moves a floor and says why.
versioning-strategy: "lockfile-only"
schedule:
interval: "weekly"
groups:
Expand Down