Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion .copier-answers.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Changes here will be overwritten by Copier
_commit: v0.0.41-12-gac9541a
_commit: v0.0.41-15-g47ecd9d
_src_path: gh:LabAutomationAndScreening/copier-base-template.git
description: Copier template for creating Python libraries and executables
python_ci_versions:
Expand Down
23 changes: 23 additions & 0 deletions .github/renovate.json5
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{
$schema: "https://docs.renovatebot.com/renovate-schema.json",
lockFileMaintenance: {
enabled: true,
},
logLevel: "debug",
// Only run the PEP 621 manager (disable all others)
enabledManagers: ["pep621"],

// Optional: customize the file-matching if your pyproject.toml lives
// in a subfolder or has a nonstandard name
pep621: {
fileMatch: ["(^|/)pyproject\\.toml$"],
},

// Example: group all Python updates into one PR
packageRules: [
{
matchManagers: ["pep621"],
groupName: "all python dependencies",
},
],
}
6 changes: 6 additions & 0 deletions template/.github/renovate.json5.jinja
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{% raw %}{
$schema: "https://docs.renovatebot.com/renovate-schema.json",
lockFileMaintenance: {
enabled: true,
},
}{% endraw %}