|
1 | 1 | { |
2 | 2 | "$schema": "https://docs.renovatebot.com/renovate-schema.json", |
3 | | - "extends": [ |
4 | | - "config:recommended", |
5 | | - "helpers:pinGitHubActionDigests", |
6 | | - ":automergeMinor" |
7 | | - ], |
| 3 | + "extends": ["config:recommended", "helpers:pinGitHubActionDigests", ":automergeMinor"], |
8 | 4 | "dependencyDashboardTitle": "META: Dependency Dashboard", |
9 | 5 | "commitMessagePrefix": "deps:", |
10 | 6 | "labels": ["dependencies"], |
|
13 | 9 | "pixi": ">=v0.45.0" |
14 | 10 | }, |
15 | 11 | "minimumReleaseAge": "14 days", |
16 | | - "packageRules": [ |
17 | | - { |
18 | | - "description": "Do not bump deps pinned with '~=' or '='.", |
19 | | - "matchManagers": ["pixi"], |
20 | | - "matchCurrentValue": "/^~?=/", |
21 | | - "enabled": false |
22 | | - }, |
23 | | - { |
24 | | - "description": "Do not bump requires-python.", |
25 | | - "matchManagers": ["pep621"], |
26 | | - "matchPackageNames": ["python"], |
27 | | - "enabled": false |
28 | | - }, |
29 | | - { |
30 | | - "description": "Schedule automerged GHA updates for the 15th of each month.", |
31 | | - "matchManagers": ["github-actions"], |
32 | | - "groupName": "gha", |
33 | | - "schedule": ["* * 15 * *"], |
34 | | - "automerge": true |
35 | | - }, |
36 | | - { |
37 | | - "description": "Block PRs for updates blocked on dropping Python 3.10.", |
38 | | - "matchManagers": ["pixi"], |
39 | | - "matchUpdateTypes": ["major", "minor"], |
40 | | - "matchPackageNames": [ |
41 | | - "numpy", |
42 | | - "jax", |
43 | | - "jaxlib", |
44 | | - "sphinx", |
45 | | - "ipython", |
46 | | - "sphinx-autodoc-typehints", |
47 | | - "pytorch" |
48 | | - ], |
49 | | - "enabled": false |
50 | | - }, |
51 | | - { |
52 | | - "description": "Group Dask packages.", |
53 | | - "matchPackageNames": ["dask", "dask-core"], |
54 | | - "groupName": "dask" |
55 | | - }, |
56 | | - { |
57 | | - "description": "Group JAX packages.", |
58 | | - "matchPackageNames": ["jax", "jaxlib"], |
59 | | - "groupName": "jax" |
60 | | - }, |
61 | | - { |
62 | | - "description": "Schedule hypothesis monthly as releases are frequent.", |
63 | | - "matchManagers": ["pixi"], |
64 | | - "matchPackageNames": ["hypothesis"], |
65 | | - "schedule": ["* * 10 * *"] |
66 | | - } |
67 | | - ] |
| 12 | + "packageRules": [{ |
| 13 | + "description": "Do not bump deps pinned with '~=' or '='.", |
| 14 | + "matchManagers": ["pixi"], |
| 15 | + "matchCurrentValue": "/^~?=/", |
| 16 | + "enabled": false |
| 17 | + }, { |
| 18 | + "description": "Do not bump requires-python.", |
| 19 | + "matchManagers": ["pep621"], |
| 20 | + "matchPackageNames": ["python"], |
| 21 | + "enabled": false |
| 22 | + }, { |
| 23 | + "description": "Schedule automerged GHA updates for the 15th of each month.", |
| 24 | + "matchManagers": ["github-actions"], |
| 25 | + "groupName": "gha", |
| 26 | + "schedule": ["* * 15 * *"], |
| 27 | + "automerge": true |
| 28 | + }, { |
| 29 | + "description": "Block PRs for updates blocked on dropping Python 3.10.", |
| 30 | + "matchManagers": ["pixi"], |
| 31 | + "matchUpdateTypes": ["major", "minor"], |
| 32 | + "matchPackageNames": [ |
| 33 | + "numpy", |
| 34 | + "jax", |
| 35 | + "jaxlib", |
| 36 | + "sphinx", |
| 37 | + "ipython", |
| 38 | + "sphinx-autodoc-typehints", |
| 39 | + "pytorch" |
| 40 | + ], |
| 41 | + "enabled": false |
| 42 | + }, { |
| 43 | + "description": "Group Dask packages.", |
| 44 | + "matchPackageNames": ["dask", "dask-core"], |
| 45 | + "groupName": "dask" |
| 46 | + }, { |
| 47 | + "description": "Group JAX packages.", |
| 48 | + "matchPackageNames": ["jax", "jaxlib"], |
| 49 | + "groupName": "jax" |
| 50 | + }, { |
| 51 | + "description": "Schedule hypothesis monthly as releases are frequent.", |
| 52 | + "matchManagers": ["pixi"], |
| 53 | + "matchPackageNames": ["hypothesis"], |
| 54 | + "schedule": ["* * 10 * *"] |
| 55 | + }] |
68 | 56 | } |
0 commit comments