Skip to content

Commit 5472d6b

Browse files
build(deps): update dependency pdm to v2.25.6
1 parent e24dea8 commit 5472d6b

File tree

10 files changed

+12
-12
lines changed

10 files changed

+12
-12
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
with:
2828
cache: true
2929
python-version: ${{ matrix.python-version }}
30-
version: 2.25.4
30+
version: 2.25.6
3131
cache-dependency-path: |
3232
./pdm.dev.lock
3333
./pdm.lock

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
with:
2626
cache: true
2727
python-version: "3.12"
28-
version: 2.25.4
28+
version: 2.25.6
2929
cache-dependency-path: |
3030
./pdm.dev.lock
3131
./pdm.lock
@@ -132,7 +132,7 @@ jobs:
132132
with:
133133
cache: true
134134
python-version: "3.12"
135-
version: 2.25.4
135+
version: 2.25.6
136136
cache-dependency-path: |
137137
./pdm.dev.lock
138138
./pdm.lock

.readthedocs.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ build:
2323
post_system_dependencies:
2424
- env | sort
2525
pre_create_environment:
26-
- PIPX_BIN_DIR=$READTHEDOCS_VIRTUALENV_PATH/bin pipx install pdm==2.25.4
26+
- PIPX_BIN_DIR=$READTHEDOCS_VIRTUALENV_PATH/bin pipx install pdm==2.25.6
2727
post_install:
2828
- VIRTUAL_ENV=$READTHEDOCS_VIRTUALENV_PATH make dev-doc
2929
post_build:

.renovaterc.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
33
"constraints": {
4-
"pdm": "2.25.4",
4+
"pdm": "2.25.6",
55
"python": "==3.12"
66
},
77
"customManagers": [

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ 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
6666
pipx list --short | grep -q "copier 9.8.0" || pipx install --force copier==9.8.0
67-
pipx list --short | grep -q "pdm 2.25.4" || pipx install --force pdm==2.25.4
67+
pipx list --short | grep -q "pdm 2.25.6" || pipx install --force pdm==2.25.6
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
7070
pipx list --short | grep -q "ruff 0.12.3" || pipx install --force ruff==0.12.3

template/.readthedocs.yaml.jinja

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ build:
2323
post_system_dependencies:
2424
- env | sort
2525
pre_create_environment:
26-
- PIPX_BIN_DIR=$READTHEDOCS_VIRTUALENV_PATH/bin pipx install pdm==2.25.4
26+
- PIPX_BIN_DIR=$READTHEDOCS_VIRTUALENV_PATH/bin pipx install pdm==2.25.6
2727
post_install:
2828
- VIRTUAL_ENV=$READTHEDOCS_VIRTUALENV_PATH make dev-doc
2929
post_build:

template/.renovaterc.json.jinja

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
{
33
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
44
"constraints": {
5-
"pdm": "2.25.4",
5+
"pdm": "2.25.6",
66
"python": "=={{ default_py }}"
77
},
88
"customManagers": [

template/Makefile.jinja

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ prerequisites:
7070
{% if project_name == "Serious Scaffold Python" %}
7171
pipx list --short | grep -q "copier 9.8.0" || pipx install --force copier==9.8.0
7272
{% endif %}
73-
pipx list --short | grep -q "pdm 2.25.4" || pipx install --force pdm==2.25.4
73+
pipx list --short | grep -q "pdm 2.25.6" || pipx install --force pdm==2.25.6
7474
pipx list --short | grep -q "pre-commit 4.2.0" || pipx install --force pre-commit==4.2.0
7575
pipx list --short | grep -q "pyproject-fmt 2.6.0" || pipx install --force pyproject-fmt==2.6.0
7676
pipx list --short | grep -q "ruff 0.12.3" || pipx install --force ruff==0.12.3

template/{% if repo_platform == 'github' %}.github{% endif %}/workflows/ci.yml.jinja

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
with:
2929
cache: true
3030
python-version: {{ '${{ matrix.python-version }}' }}
31-
version: 2.25.4
31+
version: 2.25.6
3232
cache-dependency-path: |
3333
./pdm.dev.lock
3434
./pdm.lock

template/{% if repo_platform == 'github' %}.github{% endif %}/workflows/release.yml.jinja

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
with:
2727
cache: true
2828
python-version: "{{ default_py }}"
29-
version: 2.25.4
29+
version: 2.25.6
3030
cache-dependency-path: |
3131
./pdm.dev.lock
3232
./pdm.lock
@@ -143,7 +143,7 @@ jobs:
143143
with:
144144
cache: true
145145
python-version: "{{ default_py }}"
146-
version: 2.25.4
146+
version: 2.25.6
147147
cache-dependency-path: |
148148
./pdm.dev.lock
149149
./pdm.lock

0 commit comments

Comments
 (0)