Skip to content

Commit fe6e587

Browse files
build(deps): update dependency pdm to v2.19.1
1 parent 2e25dcd commit fe6e587

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.18.2
27+
version: 2.19.1
2828
- run: env | sort
2929
- run: make prerequisites
3030
- run: make dev

.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.18.2
25+
version: 2.19.1
2626
- run: env | sort
2727
- run: make dev-doc
2828
- run: make doc
@@ -123,7 +123,7 @@ jobs:
123123
with:
124124
cache: true
125125
python-version: '3.12'
126-
version: 2.18.2
126+
version: 2.19.1
127127
- run: env | sort
128128
- env:
129129
PDM_PUBLISH_PASSWORD: ${{ secrets.PDM_PUBLISH_PASSWORD }}

.readthedocs.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ build:
2222
post_system_dependencies:
2323
- env | sort
2424
pre_create_environment:
25-
- PIPX_BIN_DIR=$READTHEDOCS_VIRTUALENV_PATH/bin pipx install pdm==2.18.2
25+
- PIPX_BIN_DIR=$READTHEDOCS_VIRTUALENV_PATH/bin pipx install pdm==2.19.1
2626
post_install:
2727
- VIRTUAL_ENV=$READTHEDOCS_VIRTUALENV_PATH make dev-doc
2828
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.18.2",
4+
"pdm": "2.19.1",
55
"python": "==3.12"
66
},
77
"customManagers": [

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ dev:
5757
# Install standalone tools
5858
prerequisites:
5959
pipx install --force codespell[toml]==2.3.0
60-
pipx install --force pdm==2.18.2
60+
pipx install --force pdm==2.19.1
6161
ifeq ($(PIPX_PYTHON_VERSION), 3.8)
6262
pipx install --force pre-commit==3.5.0
6363
else

template/.readthedocs.yaml.jinja

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ build:
2222
post_system_dependencies:
2323
- env | sort
2424
pre_create_environment:
25-
- PIPX_BIN_DIR=$READTHEDOCS_VIRTUALENV_PATH/bin pipx install pdm==2.18.2
25+
- PIPX_BIN_DIR=$READTHEDOCS_VIRTUALENV_PATH/bin pipx install pdm==2.19.1
2626
post_install:
2727
- VIRTUAL_ENV=$READTHEDOCS_VIRTUALENV_PATH make dev-doc
2828
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.18.2",
5+
"pdm": "2.19.1",
66
"python": "=={{ default_py }}"
77
},
88
"customManagers": [

template/Makefile.jinja

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ dev:
5959
# Install standalone tools
6060
prerequisites:
6161
pipx install --force codespell[toml]==2.3.0
62-
pipx install --force pdm==2.18.2
62+
pipx install --force pdm==2.19.1
6363
ifeq ($(PIPX_PYTHON_VERSION), 3.8)
6464
pipx install --force pre-commit==3.5.0
6565
else

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.18.2
28+
version: 2.19.1
2929
- run: env | sort
3030
- run: make prerequisites
3131
- run: make dev

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.18.2
26+
version: 2.19.1
2727
- run: env | sort
2828
- run: make dev-doc
2929
- run: make doc
@@ -134,7 +134,7 @@ jobs:
134134
with:
135135
cache: true
136136
python-version: '{{ default_py }}'
137-
version: 2.18.2
137+
version: 2.19.1
138138
- run: env | sort
139139
- env:
140140
PDM_PUBLISH_PASSWORD: {{ '${{ secrets.PDM_PUBLISH_PASSWORD }}' }}

0 commit comments

Comments
 (0)