Merge 781374d2ac into 5ebdd27ceb
This commit is contained in:
commit
9720d809da
|
|
@ -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": [
|
||||
"\"(?<depName>pyparted|pydantic|cryptography|textual|markdown-it-py|linkify-it-py)>=(?<currentValue>[^\"]+)\""
|
||||
],
|
||||
|
|
@ -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>=(?<currentValue>[^\"]+)\""
|
||||
],
|
||||
|
|
@ -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",
|
||||
|
|
|
|||
Loading…
Reference in New Issue