Skip to content

Commit

Permalink
build(deps): update dependency pdm to v2.16.1 (#621)
Browse files Browse the repository at this point in the history
Co-authored-by: serious-scaffold[bot] <160990600+serious-scaffold[bot]@users.noreply.github.com>
  • Loading branch information
serious-scaffold[bot] authored Jul 1, 2024
1 parent 7cc72c3 commit 1e36642
Show file tree
Hide file tree
Showing 14 changed files with 18 additions and 18 deletions.
2 changes: 1 addition & 1 deletion .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ ENV PIPX_BIN_DIR=/usr/local/bin
ENV PIPX_DEFAULT_PYTHON=/usr/local/bin/python

# Install pdm
RUN pipx install pdm==2.15.4
RUN pipx install pdm==2.16.1

# Install pre-commit
RUN if [ "${PYTHON_VERSION}" = "3.8" ]; then \
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
with:
cache: true
python-version: ${{ matrix.python-version }}
version: 2.15.4
version: 2.16.1
- run: env | sort
- run: make dev
- run: make lint test doc build
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
with:
cache: true
python-version: '3.12'
version: 2.15.4
version: 2.16.1
- run: env | sort
- run: make dev-doc
- run: make doc
Expand Down Expand Up @@ -123,7 +123,7 @@ jobs:
with:
cache: true
python-version: '3.12'
version: 2.15.4
version: 2.16.1
- run: env | sort
- env:
PDM_PUBLISH_PASSWORD: ${{ secrets.PDM_PUBLISH_PASSWORD }}
Expand Down
4 changes: 2 additions & 2 deletions .readthedocs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ build:
- env | sort
pre_create_environment:
- asdf plugin add pdm
- asdf install pdm 2.15.4
- asdf global pdm 2.15.4
- asdf install pdm 2.16.1
- asdf global pdm 2.16.1
post_install:
- VIRTUAL_ENV=$READTHEDOCS_VIRTUALENV_PATH make dev-doc
post_build:
Expand Down
2 changes: 1 addition & 1 deletion .renovaterc.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"constraints": {
"pdm": "2.15.4",
"pdm": "2.16.1",
"python": "==3.12"
},
"customManagers": [
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ Certain system-level Python applications are needed and it is recommended to use
# Copier: Template rendering for projects.
pipx install copier==9.2.0
# PDM: A modern Python package and dependency manager supporting the latest PEP standards.
pipx install pdm==2.15.4
pipx install pdm==2.16.1
# Pre-commit: Automates Git hooks for code quality checks.
pipx install pre-commit==3.7.1
```
Expand Down
2 changes: 1 addition & 1 deletion docs/development/setup-dev-env.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Using `pipx` for management is recommended and you can find pipx's installation

```bash
# PDM: A modern Python package and dependency manager supporting the latest PEP standards.
pipx install pdm==2.15.4
pipx install pdm==2.16.1
# Pre-commit: Automates Git hooks for code quality checks.
pipx install pre-commit==3.7.1
```
Expand Down
2 changes: 1 addition & 1 deletion includes/sample.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ Certain system-level Python applications are needed and it is recommended to use
# Copier: Template rendering for projects.
pipx install copier==9.2.0
# PDM: A modern Python package and dependency manager supporting the latest PEP standards.
pipx install pdm==2.15.4
pipx install pdm==2.16.1
# Pre-commit: Automates Git hooks for code quality checks.
pipx install pre-commit==3.7.1
```
Expand Down
2 changes: 1 addition & 1 deletion template/.devcontainer/Dockerfile.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ ENV PIPX_BIN_DIR=/usr/local/bin
ENV PIPX_DEFAULT_PYTHON=/usr/local/bin/python

# Install pdm
RUN pipx install pdm==2.15.4
RUN pipx install pdm==2.16.1

# Install pre-commit
RUN if [ "${PYTHON_VERSION}" = "3.8" ]; then \
Expand Down
4 changes: 2 additions & 2 deletions template/.readthedocs.yaml.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ build:
- env | sort
pre_create_environment:
- asdf plugin add pdm
- asdf install pdm 2.15.4
- asdf global pdm 2.15.4
- asdf install pdm 2.16.1
- asdf global pdm 2.16.1
post_install:
- VIRTUAL_ENV=$READTHEDOCS_VIRTUALENV_PATH make dev-doc
post_build:
Expand Down
2 changes: 1 addition & 1 deletion template/.renovaterc.json.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"constraints": {
"pdm": "2.15.4",
"pdm": "2.16.1",
"python": "=={{ default_py }}"
},
"customManagers": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
with:
cache: true
python-version: {{ '${{ matrix.python-version }}' }}
version: 2.15.4
version: 2.16.1
- run: env | sort
- run: make dev
- run: make lint test doc build
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
with:
cache: true
python-version: '{{ default_py }}'
version: 2.15.4
version: 2.16.1
- run: env | sort
- run: make dev-doc
- run: make doc
Expand Down Expand Up @@ -134,7 +134,7 @@ jobs:
with:
cache: true
python-version: '{{ default_py }}'
version: 2.15.4
version: 2.16.1
- run: env | sort
- env:
PDM_PUBLISH_PASSWORD: {{ '${{ secrets.PDM_PUBLISH_PASSWORD }}' }}
Expand Down
2 changes: 1 addition & 1 deletion template/docs/development/setup-dev-env.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Using `pipx` for management is recommended and you can find pipx's installation

```bash
# PDM: A modern Python package and dependency manager supporting the latest PEP standards.
pipx install pdm==2.15.4
pipx install pdm==2.16.1
# Pre-commit: Automates Git hooks for code quality checks.
pipx install pre-commit==3.7.1
```
Expand Down

0 comments on commit 1e36642

Please sign in to comment.