Skip to content

Commit ab85eea

Browse files
build(deps): update dependency pdm to v2.15.3 (#583)
Co-authored-by: serious-scaffold[bot] <160990600+serious-scaffold[bot]@users.noreply.github.com>
1 parent 4f754b1 commit ab85eea

File tree

14 files changed

+18
-18
lines changed

14 files changed

+18
-18
lines changed

.devcontainer/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ ENV PIPX_BIN_DIR=/usr/local/bin
3939
ENV PIPX_DEFAULT_PYTHON=/usr/local/bin/python
4040

4141
# Install pdm
42-
RUN pipx install pdm==2.15.2
42+
RUN pipx install pdm==2.15.3
4343

4444
# Install pre-commit
4545
RUN if [ "${PYTHON_VERSION}" = "3.8" ]; then \

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
with:
2323
cache: true
2424
python-version: ${{ matrix.python-version }}
25-
version: 2.15.2
25+
version: 2.15.3
2626
- run: env | sort
2727
- run: make dev
2828
- run: make lint test doc build

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
with:
2121
cache: true
2222
python-version: '3.12'
23-
version: 2.15.2
23+
version: 2.15.3
2424
- run: env | sort
2525
- run: make dev-doc
2626
- run: make doc
@@ -110,7 +110,7 @@ jobs:
110110
with:
111111
cache: true
112112
python-version: '3.12'
113-
version: 2.15.2
113+
version: 2.15.3
114114
- run: env | sort
115115
- env:
116116
PDM_PUBLISH_PASSWORD: ${{ secrets.PDM_PUBLISH_PASSWORD }}

.readthedocs.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ build:
2121
- env | sort
2222
pre_create_environment:
2323
- asdf plugin add pdm
24-
- asdf install pdm 2.15.2
25-
- asdf global pdm 2.15.2
24+
- asdf install pdm 2.15.3
25+
- asdf global pdm 2.15.3
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.15.2",
4+
"pdm": "2.15.3",
55
"python": "==3.12"
66
},
77
"customManagers": [

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ Certain system-level Python applications are needed and it is recommended to use
6161
# Copier: Template rendering for projects.
6262
pipx install copier==9.2.0
6363
# PDM: A modern Python package and dependency manager supporting the latest PEP standards.
64-
pipx install pdm==2.15.2
64+
pipx install pdm==2.15.3
6565
# Pre-commit: Automates Git hooks for code quality checks.
6666
pipx install pre-commit==3.7.1
6767
```

docs/development/setup-dev-env.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Using `pipx` for management is recommended and you can find pipx's installation
1212

1313
```bash
1414
# PDM: A modern Python package and dependency manager supporting the latest PEP standards.
15-
pipx install pdm==2.15.2
15+
pipx install pdm==2.15.3
1616
# Pre-commit: Automates Git hooks for code quality checks.
1717
pipx install pre-commit==3.7.1
1818
```

includes/sample.jinja

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ Certain system-level Python applications are needed and it is recommended to use
3939
# Copier: Template rendering for projects.
4040
pipx install copier==9.2.0
4141
# PDM: A modern Python package and dependency manager supporting the latest PEP standards.
42-
pipx install pdm==2.15.2
42+
pipx install pdm==2.15.3
4343
# Pre-commit: Automates Git hooks for code quality checks.
4444
pipx install pre-commit==3.7.1
4545
```

template/.devcontainer/Dockerfile.jinja

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ ENV PIPX_BIN_DIR=/usr/local/bin
3939
ENV PIPX_DEFAULT_PYTHON=/usr/local/bin/python
4040

4141
# Install pdm
42-
RUN pipx install pdm==2.15.2
42+
RUN pipx install pdm==2.15.3
4343

4444
# Install pre-commit
4545
RUN if [ "${PYTHON_VERSION}" = "3.8" ]; then \

template/.readthedocs.yaml.jinja

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ build:
2121
- env | sort
2222
pre_create_environment:
2323
- asdf plugin add pdm
24-
- asdf install pdm 2.15.2
25-
- asdf global pdm 2.15.2
24+
- asdf install pdm 2.15.3
25+
- asdf global pdm 2.15.3
2626
post_install:
2727
- VIRTUAL_ENV=$READTHEDOCS_VIRTUALENV_PATH make dev-doc
2828
post_build:

0 commit comments

Comments
 (0)