Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build(deps): update dependency pdm to v2.15.3 #108

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.2
RUN pipx install pdm==2.15.3

# 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 @@ -25,7 +25,7 @@ jobs:
with:
cache: true
python-version: ${{ matrix.python-version }}
version: 2.15.2
version: 2.15.3
- run: env | sort
- run: make dev
- run: make lint
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
with:
cache: true
python-version: '3.12'
version: 2.15.2
version: 2.15.3
- run: env | sort
- run: make dev-doc
- run: make doc
Expand Down Expand Up @@ -88,7 +88,7 @@ jobs:
with:
cache: true
python-version: '3.12'
version: 2.15.2
version: 2.15.3
- 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.2
- asdf global pdm 2.15.2
- asdf install pdm 2.15.3
- asdf global pdm 2.15.3
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.2",
"pdm": "2.15.3",
"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.2
pipx install pdm==2.15.3
# 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.2
pipx install pdm==2.15.3
# 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.2
pipx install pdm==2.15.3
# 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.2
RUN pipx install pdm==2.15.3

# 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.2
- asdf global pdm 2.15.2
- asdf install pdm 2.15.3
- asdf global pdm 2.15.3
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.2",
"pdm": "2.15.3",
"python": "=={{ default_py }}"
},
"customManagers": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
with:
cache: true
python-version: {{ '${{ matrix.python-version }}' }}
version: 2.15.2
version: 2.15.3
- run: env | sort
- run: make dev
- run: make lint
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
with:
cache: true
python-version: '{{ default_py }}'
version: 2.15.2
version: 2.15.3
- run: env | sort
- run: make dev-doc
- run: make doc
Expand Down Expand Up @@ -99,7 +99,7 @@ jobs:
with:
cache: true
python-version: '{{ default_py }}'
version: 2.15.2
version: 2.15.3
- 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.2
pipx install pdm==2.15.3
# Pre-commit: Automates Git hooks for code quality checks.
pipx install pre-commit==3.7.1
```
Expand Down