Skip to content
Open
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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Migrated `sonarcloud.yml` to use `python-sonarcloud.yml` reusable workflow
- Migrated `pr-validation.yml` to use `python-supplemental-checks.yml` reusable workflow
- Removed dependency on deprecated `python-pr-validation.yml` workflow
- Switched Renovate `enabledManagers` from `poetry` to `pep621` so Renovate can detect dependencies in the uv-managed `pyproject.toml`

### Fixed

Expand Down
20 changes: 6 additions & 14 deletions renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@
{
"description": "Group Python dependencies by type",
"matchManagers": [
"poetry"
"pep621"
],
"matchDepTypes": [
"dependencies"
"project.dependencies"
],
"groupName": "Python dependencies",
"automerge": false,
Expand All @@ -40,10 +40,11 @@
{
"description": "Group Python dev dependencies",
"matchManagers": [
"poetry"
"pep621"
],
"matchDepTypes": [
"devDependencies"
"dependency-groups",
"tool.uv.dev-dependencies"
],
"groupName": "Python dev dependencies",
"automerge": false,
Expand Down Expand Up @@ -151,12 +152,6 @@
"python": {
"enabled": true
},
"poetry": {
"enabled": true,
"fileMatch": [
"(^|/)pyproject\\.toml$"
]
},
"lockFileMaintenance": {
"enabled": true,
"schedule": [
Expand Down Expand Up @@ -191,9 +186,6 @@
},
"osvVulnerabilityAlerts": true,
"transitiveRemediation": true,
"postUpdateOptions": [
"poetryMassage"
],
"customManagers": [
{
"customType": "regex",
Expand All @@ -206,7 +198,7 @@
}
],
"enabledManagers": [
"poetry",
"pep621",
"github-actions"
]
}
Loading