Skip to content

Commit 510ff85

Browse files
chore(deps): update pdm to v2.15.2 (#542)
Co-authored-by: serious-scaffold[bot] <160990600+serious-scaffold[bot]@users.noreply.github.com>
1 parent cf94c4e commit 510ff85

File tree

12 files changed

+16
-16
lines changed

12 files changed

+16
-16
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.1
42+
RUN pipx install pdm==2.15.2
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
@@ -14,7 +14,7 @@ jobs:
1414
with:
1515
cache: true
1616
python-version: ${{ matrix.python-version }}
17-
version: 2.15.1
17+
version: 2.15.2
1818
- id: pages
1919
name: Setup pages
2020
uses: actions/configure-pages@983d7736d9b0ae728b81ab479565c72886d7745b # v5.0.0

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
with:
1111
cache: true
1212
python-version: "3.12"
13-
version: 2.15.1
13+
version: 2.15.2
1414
- id: pages
1515
name: Setup pages
1616
uses: actions/configure-pages@983d7736d9b0ae728b81ab479565c72886d7745b # v5.0.0
@@ -104,7 +104,7 @@ jobs:
104104
with:
105105
cache: true
106106
python-version: "3.12"
107-
version: 2.15.1
107+
version: 2.15.2
108108
- run: env | sort
109109
- env:
110110
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.1
25-
- asdf global pdm 2.15.1
24+
- asdf install pdm 2.15.2
25+
- asdf global pdm 2.15.2
2626
post_install:
2727
- VIRTUAL_ENV=$READTHEDOCS_VIRTUALENV_PATH make dev-doc
2828
pre_build:

README.md

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

docs/dev/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.1
15+
pipx install pdm==2.15.2
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
@@ -38,7 +38,7 @@ Certain system-level Python applications are needed and it is recommended to use
3838
# Copier: Template rendering for projects.
3939
pipx install copier==9.2.0
4040
# PDM: A modern Python package and dependency manager supporting the latest PEP standards.
41-
pipx install pdm==2.15.1
41+
pipx install pdm==2.15.2
4242
# Pre-commit: Automates Git hooks for code quality checks.
4343
pipx install pre-commit==3.7.1
4444
```

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.1
42+
RUN pipx install pdm==2.15.2
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.1
25-
- asdf global pdm 2.15.1
24+
- asdf install pdm 2.15.2
25+
- asdf global pdm 2.15.2
2626
post_install:
2727
- VIRTUAL_ENV=$READTHEDOCS_VIRTUALENV_PATH make dev-doc
2828
pre_build:

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
@@ -15,7 +15,7 @@ jobs:
1515
with:
1616
cache: true
1717
python-version: {{ '${{ matrix.python-version }}' }}
18-
version: 2.15.1
18+
version: 2.15.2
1919
- id: pages
2020
name: Setup pages
2121
uses: actions/configure-pages@983d7736d9b0ae728b81ab479565c72886d7745b # v5.0.0

0 commit comments

Comments
 (0)