Skip to content

Commit e557278

Browse files
committed
Use matchPackageNames instead of matchPackagePattern
1 parent 8add799 commit e557278

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

renovate.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -32,19 +32,19 @@
3232
{
3333
"description": "Keep core scientific stack (numpy, pandas, scipy) in sync across files",
3434
"matchDatasources": ["pypi"],
35-
"matchPackagePatterns": ["^(numpy|pandas|scipy)$"],
35+
"matchPackageNames": ["numpy", "pandas", "scipy"],
3636
"groupName": "python-scientific-core-libs"
3737
},
3838
{
3939
"description": "Keep Machine Learning libraries (scikit-learn, UMAP, OpenTSNE, SHAP) in sync across files",
4040
"matchDatasources": ["pypi"],
41-
"matchPackagePatterns": ["^scikit-.*", "umap-learn", "opentsne", "shap", "optuna"],
41+
"matchPackageNames": ["scikit-**", "umap-learn", "opentsne", "shap", "optuna"],
4242
"groupName": "python-machine-learning-libs"
4343
},
4444
{
4545
"description": "Keep Visualization libraries (plotly, matplotlib, seaboarn) in sync across files",
4646
"matchDatasources": ["pypi"],
47-
"matchPackagePatterns": ["matplotlib", "plotly", "python-kaleido", "seaborn", "wordcloud"],
47+
"matchPackageNames": ["matplotlib", "plotly", "python-kaleido", "seaborn", "wordcloud"],
4848
"groupName": "python-visualization-libs"
4949
},
5050
{
@@ -199,8 +199,8 @@
199199
"matchStrings": [
200200
"\\s+-\\s+(?<depName>[\\w-]+)={1,2}(?<currentValue>[^\\s#]+).*"
201201
],
202-
"datasourceTemplate": "Pypi",
203-
"versioningTemplate": "conda"
202+
"datasourceTemplate": "pypi",
203+
"versioningTemplate": "pep440"
204204
}
205205
]
206206
}

0 commit comments

Comments
 (0)