Skip to content

Commit d1def74

Browse files
build(deps): update dependency pdm to v2.24.0 (#971)
Co-authored-by: serious-scaffold[bot] <160990600+serious-scaffold[bot]@users.noreply.github.com>
1 parent eddc96a commit d1def74

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
@@ -24,7 +24,7 @@ jobs:
2424
with:
2525
cache: true
2626
python-version: ${{ matrix.python-version }}
27-
version: 2.23.1
27+
version: 2.24.0
2828
cache-dependency-path: |
2929
./pdm.dev.lock
3030
./pdm.lock

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
with:
2323
cache: true
2424
python-version: '3.12'
25-
version: 2.23.1
25+
version: 2.24.0
2626
cache-dependency-path: |
2727
./pdm.dev.lock
2828
./pdm.lock
@@ -129,7 +129,7 @@ jobs:
129129
with:
130130
cache: true
131131
python-version: '3.12'
132-
version: 2.23.1
132+
version: 2.24.0
133133
cache-dependency-path: |
134134
./pdm.dev.lock
135135
./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.23.1
26+
- PIPX_BIN_DIR=$READTHEDOCS_VIRTUALENV_PATH/bin pipx install pdm==2.24.0
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.23.1",
4+
"pdm": "2.24.0",
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.0" || pipx install --force check-jsonschema==0.33.0
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.6.0" || pipx install --force copier==9.6.0
67-
pipx list --short | grep -q "pdm 2.23.1" || pipx install --force pdm==2.23.1
67+
pipx list --short | grep -q "pdm 2.24.0" || pipx install --force pdm==2.24.0
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.5.1" || pipx install --force pyproject-fmt==2.5.1
7070
pipx list --short | grep -q "ruff 0.11.5" || pipx install --force ruff==0.11.5

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.23.1
26+
- PIPX_BIN_DIR=$READTHEDOCS_VIRTUALENV_PATH/bin pipx install pdm==2.24.0
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.23.1",
5+
"pdm": "2.24.0",
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.6.0" || pipx install --force copier==9.6.0
7272
{% endif %}
73-
pipx list --short | grep -q "pdm 2.23.1" || pipx install --force pdm==2.23.1
73+
pipx list --short | grep -q "pdm 2.24.0" || pipx install --force pdm==2.24.0
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.5.1" || pipx install --force pyproject-fmt==2.5.1
7676
pipx list --short | grep -q "ruff 0.11.5" || pipx install --force ruff==0.11.5

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
@@ -25,7 +25,7 @@ jobs:
2525
with:
2626
cache: true
2727
python-version: {{ '${{ matrix.python-version }}' }}
28-
version: 2.23.1
28+
version: 2.24.0
2929
cache-dependency-path: |
3030
./pdm.dev.lock
3131
./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
@@ -23,7 +23,7 @@ jobs:
2323
with:
2424
cache: true
2525
python-version: '{{ default_py }}'
26-
version: 2.23.1
26+
version: 2.24.0
2727
cache-dependency-path: |
2828
./pdm.dev.lock
2929
./pdm.lock
@@ -140,7 +140,7 @@ jobs:
140140
with:
141141
cache: true
142142
python-version: '{{ default_py }}'
143-
version: 2.23.1
143+
version: 2.24.0
144144
cache-dependency-path: |
145145
./pdm.dev.lock
146146
./pdm.lock

0 commit comments

Comments
 (0)