Files
lasuite-drive/renovate.json
T
Manuel Raynaud bf1e165a59 📌(backend) pin requires-python to version 3.13
We want to manage manually the requires-python version decalre in the
pyproject.toml file. The renovate.json is updated to not upgrade it
anymore.
2025-11-25 12:58:07 +01:00

25 lines
788 B
JSON

{
"extends": ["github>numerique-gouv/renovate-configuration"],
"dependencyDashboard": true,
"labels": ["dependencies", "noChangeLog"],
"packageRules": [
{
"groupName": "allowed redis versions",
"matchManagers": ["pep621"],
"matchPackageNames": ["redis"],
"allowedVersions": "<6.0.0"
},
{
"groupName": "allowed pylint versions",
"matchManagers": ["pep621"],
"matchPackageNames": ["pylint"],
"allowedVersions": "<4.0.0"
},
{
"description": "Disable requires-python updates - managed manually",
"matchManagers": ["pep621"],
"matchPackageNames": ["python"],
"enabled": false
}
]
}