diff --git a/renovate.json b/renovate.json index 6c96b6298a..819bf45786 100644 --- a/renovate.json +++ b/renovate.json @@ -12,7 +12,9 @@ { "customType": "regex", "description": "Track runtime Python deps via Arch Linux repos instead of PyPI", - "managerFilePatterns": ["**/pyproject.toml"], + "managerFilePatterns": [ + "**/pyproject.toml" + ], "matchStrings": [ "\"(?pyparted|pydantic|cryptography|textual|markdown-it-py|linkify-it-py)==(?[^\"]+)\"" ], @@ -24,7 +26,9 @@ { "customType": "regex", "description": "Track systemd_python via Arch Linux repos (different package name)", - "managerFilePatterns": ["**/pyproject.toml"], + "managerFilePatterns": [ + "**/pyproject.toml" + ], "matchStrings": [ "\"systemd_python==(?[^\"]+)\"" ], @@ -36,9 +40,6 @@ ], "packageRules": [ { - "matchDepTypes": [ - "devDependencies" - ], "matchPackageNames": [ "mypy", "ruff", @@ -47,13 +48,20 @@ "pre-commit/mirrors-mypy", "dev/flake8", "pycqa/flake8", - "astral-sh/ruff-pre-commit" + "astral-sh/ruff-pre-commit", + "astral-sh/ruff-action", + "actions/checkout", + "actions/setup-python", + "pytest", + "pylint" ], "automerge": true }, { "description": "Disable PyPI updates for runtime deps tracked via Arch repos", - "matchDatasources": ["pypi"], + "matchDatasources": [ + "pypi" + ], "matchPackageNames": [ "pyparted", "pydantic",