|
20 | 20 | "pep621",
|
21 | 21 | "pre-commit"
|
22 | 22 | ],
|
23 |
| - "github-actions": { |
24 |
| - "fileMatch": ["(^|/)\\.github/workflows/[^/]+$"] |
25 |
| - }, |
26 |
| - "pep621": { |
27 |
| - "fileMatch": ["(^|/)pyproject\\.toml[^/]*$"], |
28 |
| - "rangeStrategy": "bump" |
29 |
| - }, |
30 |
| - "ignoreDeps": ["towncrier"], |
31 | 23 | "customManagers": [
|
32 | 24 | {
|
33 | 25 | "description": "uv",
|
|
41 | 33 | "description": "uv-gha",
|
42 | 34 | "customType": "regex",
|
43 | 35 | "fileMatch": ["(^|/)\\.github/workflows/[^/]*$"],
|
44 |
| - "matchStrings": ["- uses: \"astral-sh/setup-uv@.+\\n\\s+with:\\n\\s+version:\\s\"(?<currentValue>.+)\""], |
| 36 | + "matchStrings": [ |
| 37 | + "- uses: \"astral-sh/setup-uv@.+\\n\\s+with:\\n\\s+version:\\s\"(?<currentValue>.+)\"" |
| 38 | + ], |
45 | 39 | "datasourceTemplate": "github-releases",
|
46 | 40 | "depNameTemplate": "astral-sh/uv"
|
47 | 41 | },
|
|
52 | 46 | "matchStrings": ["(?<currentValue>[^\\n]+)"],
|
53 | 47 | "datasourceTemplate": "github-releases",
|
54 | 48 | "depNameTemplate": "microsoft/pylance-release"
|
55 |
| - }, |
56 |
| - { |
57 |
| - "description": "copier", |
58 |
| - "customType": "regex", |
59 |
| - "fileMatch": ["(^|/)\\.copier-version[^/]*$"], |
60 |
| - "matchStrings": ["(?<currentValue>[^\\n]+)"], |
61 |
| - "datasourceTemplate": "pypi", |
62 |
| - "depNameTemplate": "copier" |
63 | 49 | }
|
64 | 50 | ],
|
65 | 51 | "packageRules": [
|
66 | 52 | {
|
67 | 53 | "groupName": "all",
|
68 | 54 | "matchPackageNames": ["*"]
|
| 55 | + }, |
| 56 | + { |
| 57 | + "groupName": "ruff", |
| 58 | + "matchPackageNames": ["/^.*ruff.*$/"] |
| 59 | + }, |
| 60 | + { |
| 61 | + "groupName": "pylance", |
| 62 | + "matchPackageNames": ["microsoft/pylance-release"] |
| 63 | + }, |
| 64 | + { |
| 65 | + "groupName": "tests", |
| 66 | + "matchPackageNames": ["/^.*pytest.*$/"] |
| 67 | + }, |
| 68 | + { |
| 69 | + "groupName": "docs", |
| 70 | + "matchPackageNames": [ |
| 71 | + "docutils", |
| 72 | + "linkify-it-py", |
| 73 | + "numpydoc", |
| 74 | + "/^.*sphinx.*$/", |
| 75 | + "/^.*myst.*$/" |
| 76 | + ] |
| 77 | + }, |
| 78 | + { |
| 79 | + "groupName": "devcontainer", |
| 80 | + "matchManagers": ["devcontainer"] |
69 | 81 | }
|
70 | 82 | ]
|
71 | 83 | }
|
0 commit comments