Skip to content

Commit 6e04ee3

Browse files
chore(deps): update pdm to v2.15.1 (#512)
Co-authored-by: serious-scaffold[bot] <160990600+serious-scaffold[bot]@users.noreply.github.com>
1 parent dc08d78 commit 6e04ee3

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
@@ -28,7 +28,7 @@ ENV PIPX_BIN_DIR=/usr/local/bin
2828
ENV PIPX_DEFAULT_PYTHON=/usr/local/bin/python
2929

3030
# Install pdm
31-
RUN pipx install pdm==2.15.0
31+
RUN pipx install pdm==2.15.1
3232

3333
# Install pre-commit
3434
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.0
17+
version: 2.15.1
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.0
13+
version: 2.15.1
1414
- id: pages
1515
name: Setup pages
1616
uses: actions/configure-pages@983d7736d9b0ae728b81ab479565c72886d7745b # v5.0.0
@@ -114,7 +114,7 @@ jobs:
114114
with:
115115
cache: true
116116
python-version: "3.12"
117-
version: 2.15.0
117+
version: 2.15.1
118118
- run: env | sort
119119
- env:
120120
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.0
25-
- asdf global pdm 2.15.0
24+
- asdf install pdm 2.15.1
25+
- asdf global pdm 2.15.1
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
@@ -58,7 +58,7 @@ Certain system-level Python applications are needed and it is recommended to use
5858
# Copier: Template rendering for projects.
5959
pipx install copier==9.2.0
6060
# PDM: A modern Python package and dependency manager supporting the latest PEP standards.
61-
pipx install pdm==2.15.0
61+
pipx install pdm==2.15.1
6262
# Pre-commit: Automates Git hooks for code quality checks.
6363
pipx install pre-commit==3.7.0
6464
```

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.0
15+
pipx install pdm==2.15.1
1616
# Pre-commit: Automates Git hooks for code quality checks.
1717
pipx install pre-commit==3.7.0
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.0
42+
pipx install pdm==2.15.1
4343
# Pre-commit: Automates Git hooks for code quality checks.
4444
pipx install pre-commit==3.7.0
4545
```

template/.devcontainer/Dockerfile.jinja

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

3030
# Install pdm
31-
RUN pipx install pdm==2.15.0
31+
RUN pipx install pdm==2.15.1
3232

3333
# Install pre-commit
3434
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.0
25-
- asdf global pdm 2.15.0
24+
- asdf install pdm 2.15.1
25+
- asdf global pdm 2.15.1
2626
post_install:
2727
- VIRTUAL_ENV=$READTHEDOCS_VIRTUALENV_PATH make dev-doc
2828
pre_build:

template/[% if repo_host_type == 'github.com' %].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.0
18+
version: 2.15.1
1919
- id: pages
2020
name: Setup pages
2121
uses: actions/configure-pages@983d7736d9b0ae728b81ab479565c72886d7745b # v5.0.0

0 commit comments

Comments
 (0)