Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Re-attempt to use lockfile-only strategy with dependabot #854

Merged
merged 5 commits into from
Aug 20, 2024
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
25 changes: 1 addition & 24 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,38 +1,15 @@
version: 2
updates:
# Update rule for lockfiles only: will bump requirements within the
# compatible versions found in pyproject.toml
- package-ecosystem: pip
directory: "./pydatalab"
schedule:
interval: monthly
day: monday
time: "05:43"
# Needs to be larger than the number of total requirements (currently 31)
open-pull-requests-limit: 50
target-branch: main
versioning-strategy: lockfile-only
labels:
- dependency_updates
versioning-strategy: "lockfile-only"
groups:
python-dependencies-compat:
applies-to: version-updates
dependency-type: production
# Will make a separate PR to bump versions explicitly to the latest versions, in all cases
# May trigger incompatibilities in many cases, in which case additional constraints may be needed here
- package-ecosystem: pip
directory: "./pydatalab"
schedule:
interval: monthly
day: monday
time: "05:43"
# Needs to be larger than the number of total requirements (currently 31)
open-pull-requests-limit: 50
target-branch: main
labels:
- dependency_updates
# Turn off automatic rebases so that auto-merge can work without needed N**2 CI runs
rebase-strategy: "disabled"
groups:
python-dependencies:
applies-to: version-updates
Expand Down