Skip to content

Commit 78bbe8c

Browse files
build(deps): update dependency copier to v9.9.0
1 parent e24dea8 commit 78bbe8c

File tree

12 files changed

+12
-12
lines changed

12 files changed

+12
-12
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ jobs:
6161
run: |
6262
git config --global user.name github-actions
6363
git config --global user.email [email protected]
64-
- run: pipx install copier==9.8.0
64+
- run: pipx install copier==9.9.0
6565
- run: make template-build
6666
- run: git diff
6767
- run: git status --porcelain

.gitlab/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ consistency:
3939
script:
4040
- git config --global user.name gitlab-ci
4141
- git config --global user.email [email protected]
42-
- pipx install copier==9.8.0
42+
- pipx install copier==9.9.0
4343
- make template-build
4444
- git diff
4545
- git status --porcelain

.renovaterc.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@
222222
"postUpgradeTasks": {
223223
"commands": [
224224
"git stash",
225-
"pip install copier==9.8.0",
225+
"pip install copier==9.9.0",
226226
"copier update --skip-answered --defaults --vcs-ref {{{newVersion}}}"
227227
]
228228
},

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ lock:
6363
prerequisites:
6464
pipx list --short | grep -q "check-jsonschema 0.33.2" || pipx install --force check-jsonschema==0.33.2
6565
pipx list --short | grep -q "codespell 2.4.1" || pipx install --force codespell[toml]==2.4.1
66-
pipx list --short | grep -q "copier 9.8.0" || pipx install --force copier==9.8.0
66+
pipx list --short | grep -q "copier 9.9.0" || pipx install --force copier==9.9.0
6767
pipx list --short | grep -q "pdm 2.25.4" || pipx install --force pdm==2.25.4
6868
pipx list --short | grep -q "pre-commit 4.2.0" || pipx install --force pre-commit==4.2.0
6969
pipx list --short | grep -q "pyproject-fmt 2.6.0" || pipx install --force pyproject-fmt==2.6.0

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ Please refer to pipx's installation instructions [here](https://pipx.pypa.io/sta
6464
Once pipx is set up, install the copier for project generation using the following command:
6565

6666
```bash
67-
pipx install copier==9.8.0
67+
pipx install copier==9.9.0
6868
```
6969

7070
## 🚀 Quickstart

docs/management/init.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Please refer to pipx's installation instructions [here](https://pipx.pypa.io/sta
77
Once pipx is set up, install the copier for project generation using the following command:
88

99
```bash
10-
pipx install copier==9.8.0
10+
pipx install copier==9.9.0
1111
```
1212

1313
## Create the Repository

includes/sample.jinja

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ Please refer to pipx's installation instructions [here](https://pipx.pypa.io/sta
3838
Once pipx is set up, install the copier for project generation using the following command:
3939

4040
```bash
41-
pipx install copier==9.8.0
41+
pipx install copier==9.9.0
4242
```
4343

4444
## 🚀 Quickstart

template/.renovaterc.json.jinja

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@
237237
"postUpgradeTasks": {
238238
"commands": [
239239
"git stash",
240-
"pip install copier==9.8.0",
240+
"pip install copier==9.9.0",
241241
"copier update --skip-answered --defaults --vcs-ref {{ '{{{newVersion}}}' }}"
242242
]
243243
},

template/Makefile.jinja

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ prerequisites:
6868
pipx list --short | grep -q "check-jsonschema 0.33.2" || pipx install --force check-jsonschema==0.33.2
6969
pipx list --short | grep -q "codespell 2.4.1" || pipx install --force codespell[toml]==2.4.1
7070
{% if project_name == "Serious Scaffold Python" %}
71-
pipx list --short | grep -q "copier 9.8.0" || pipx install --force copier==9.8.0
71+
pipx list --short | grep -q "copier 9.9.0" || pipx install --force copier==9.9.0
7272
{% endif %}
7373
pipx list --short | grep -q "pdm 2.25.4" || pipx install --force pdm==2.25.4
7474
pipx list --short | grep -q "pre-commit 4.2.0" || pipx install --force pre-commit==4.2.0

template/docs/management/init.md.jinja

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Please refer to pipx's installation instructions [here](https://pipx.pypa.io/sta
88
Once pipx is set up, install the copier for project generation using the following command:
99

1010
```bash
11-
pipx install copier==9.8.0
11+
pipx install copier==9.9.0
1212
```
1313

1414
## Create the Repository

0 commit comments

Comments
 (0)