Skip to content

Commit edce60d

Browse files
Fix regexes
1 parent 6469544 commit edce60d

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.copier-answers.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Changes here will be overwritten by Copier; NEVER EDIT MANUALLY
2-
_commit: 2024.1.1-260-gb188c8e
2+
_commit: 2024.1.1-261-g6469544
33
_src_path: gh:blakeNaccarato/copier-python
44
actions_runner: ubuntu-22.04
55
github_repo_name: copier-python

.renovaterc.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@
8484
},
8585
{
8686
"groupName": "ruff",
87-
"matchPackageNames": [".*ruff.*"]
87+
"matchPackageNames": ["/^.*ruff.*$/"]
8888
},
8989
{
9090
"groupName": "fawltydeps",
@@ -100,11 +100,11 @@
100100
},
101101
{
102102
"groupName": "tests",
103-
"matchPackageNames": [".*pytest.*"]
103+
"matchPackageNames": ["/^.*pytest.*$/"]
104104
},
105105
{
106106
"groupName": "docs",
107-
"matchPackageNames": ["docutils", "numpydoc", ".*sphinx.*", ".*myst.*"]
107+
"matchPackageNames": ["docutils", "numpydoc", "/^.*sphinx.*$/", "/^.*myst.*$/"]
108108
},
109109
{
110110
"groupName": "devcontainer",

template/.renovaterc.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@
7878
},
7979
{
8080
"groupName": "ruff",
81-
"matchPackageNames": [".*ruff.*"]
81+
"matchPackageNames": ["/^.*ruff.*$/"]
8282
},
8383
{
8484
"groupName": "fawltydeps",
@@ -94,11 +94,11 @@
9494
},
9595
{
9696
"groupName": "tests",
97-
"matchPackageNames": [".*pytest.*"]
97+
"matchPackageNames": ["/^.*pytest.*$/"]
9898
},
9999
{
100100
"groupName": "docs",
101-
"matchPackageNames": ["docutils", "numpydoc", ".*sphinx.*", ".*myst.*"]
101+
"matchPackageNames": ["docutils", "numpydoc", "/^.*sphinx.*$/", "/^.*myst.*$/"]
102102
},
103103
{
104104
"groupName": "devcontainer",

0 commit comments

Comments
 (0)