Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:
run: |
git config --global user.name github-actions
git config --global user.email [email protected]
- run: pipx install copier==9.8.0
- run: pipx install copier==9.10.3
- run: make template-build
- run: git diff
- run: git status --porcelain
Expand Down
2 changes: 1 addition & 1 deletion .gitlab/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ consistency:
script:
- git config --global user.name gitlab-ci
- git config --global user.email [email protected]
- pipx install copier==9.8.0
- pipx install copier==9.10.3
- make template-build
- git diff
- git status --porcelain
Expand Down
2 changes: 1 addition & 1 deletion .renovaterc.json
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@
"postUpgradeTasks": {
"commands": [
"git stash",
"pip install copier==9.8.0",
"pip install copier==9.10.3",
"copier update --skip-answered --defaults --vcs-ref {{{newVersion}}}"
]
},
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ lock:
prerequisites:
pipx list --short | grep -q "check-jsonschema 0.33.2" || pipx install --force check-jsonschema==0.33.2
pipx list --short | grep -q "codespell 2.4.1" || pipx install --force codespell[toml]==2.4.1
pipx list --short | grep -q "copier 9.8.0" || pipx install --force copier==9.8.0
pipx list --short | grep -q "copier 9.10.3" || pipx install --force copier==9.10.3
pipx list --short | grep -q "pdm 2.25.4" || pipx install --force pdm==2.25.4
pipx list --short | grep -q "pre-commit 4.2.0" || pipx install --force pre-commit==4.2.0
pipx list --short | grep -q "pyproject-fmt 2.6.0" || pipx install --force pyproject-fmt==2.6.0
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ Please refer to pipx's installation instructions [here](https://pipx.pypa.io/sta
Once pipx is set up, install the copier for project generation using the following command:

```bash
pipx install copier==9.8.0
pipx install copier==9.10.3
```

## 🚀 Quickstart
Expand Down
2 changes: 1 addition & 1 deletion docs/management/init.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Please refer to pipx's installation instructions [here](https://pipx.pypa.io/sta
Once pipx is set up, install the copier for project generation using the following command:

```bash
pipx install copier==9.8.0
pipx install copier==9.10.3
```

## Create the Repository
Expand Down
2 changes: 1 addition & 1 deletion includes/sample.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ Please refer to pipx's installation instructions [here](https://pipx.pypa.io/sta
Once pipx is set up, install the copier for project generation using the following command:

```bash
pipx install copier==9.8.0
pipx install copier==9.10.3
```

## 🚀 Quickstart
Expand Down
2 changes: 1 addition & 1 deletion template/.renovaterc.json.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@
"postUpgradeTasks": {
"commands": [
"git stash",
"pip install copier==9.8.0",
"pip install copier==9.10.3",
"copier update --skip-answered --defaults --vcs-ref {{ '{{{newVersion}}}' }}"
]
},
Expand Down
2 changes: 1 addition & 1 deletion template/Makefile.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ prerequisites:
pipx list --short | grep -q "check-jsonschema 0.33.2" || pipx install --force check-jsonschema==0.33.2
pipx list --short | grep -q "codespell 2.4.1" || pipx install --force codespell[toml]==2.4.1
{% if project_name == "Serious Scaffold Python" %}
pipx list --short | grep -q "copier 9.8.0" || pipx install --force copier==9.8.0
pipx list --short | grep -q "copier 9.10.3" || pipx install --force copier==9.10.3
{% endif %}
pipx list --short | grep -q "pdm 2.25.4" || pipx install --force pdm==2.25.4
pipx list --short | grep -q "pre-commit 4.2.0" || pipx install --force pre-commit==4.2.0
Expand Down
2 changes: 1 addition & 1 deletion template/docs/management/init.md.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Please refer to pipx's installation instructions [here](https://pipx.pypa.io/sta
Once pipx is set up, install the copier for project generation using the following command:

```bash
pipx install copier==9.8.0
pipx install copier==9.10.3
```

## Create the Repository
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ jobs:
run: |
git config --global user.name github-actions
git config --global user.email [email protected]
- run: pipx install copier==9.8.0
- run: pipx install copier==9.10.3
- run: make template-build
- run: git diff
- run: git status --porcelain
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ consistency:
script:
- git config --global user.name gitlab-ci
- git config --global user.email [email protected]
- pipx install copier==9.8.0
- pipx install copier==9.10.3
- make template-build
- git diff
- git status --porcelain
Expand Down
Loading