From f77e336d4497a641d1e0b197fb1feb90c63cf08e Mon Sep 17 00:00:00 2001 From: "serious-scaffold[bot]" <160990600+serious-scaffold[bot]@users.noreply.github.com> Date: Mon, 29 Apr 2024 02:16:35 +0000 Subject: [PATCH] chore(deps): update pdm to v2.15.1 --- .devcontainer/Dockerfile | 2 +- .github/workflows/ci.yml | 2 +- .github/workflows/release.yml | 4 ++-- .readthedocs.yaml | 4 ++-- README.md | 2 +- docs/dev/dev-env.md | 2 +- includes/sample.jinja | 2 +- template/.devcontainer/Dockerfile.jinja | 2 +- template/.readthedocs.yaml.jinja | 4 ++-- .../workflows/ci.yml.jinja | 2 +- .../workflows/release.yml.jinja | 4 ++-- template/docs/dev/dev-env.md | 2 +- 12 files changed, 16 insertions(+), 16 deletions(-) diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index 6531567e..aa60b014 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -28,7 +28,7 @@ ENV PIPX_BIN_DIR=/usr/local/bin ENV PIPX_DEFAULT_PYTHON=/usr/local/bin/python # Install pdm -RUN pipx install pdm==2.15.0 +RUN pipx install pdm==2.15.1 # Install pre-commit RUN if [ "${PYTHON_VERSION}" = "3.8" ]; then \ diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d5eac480..87d86598 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,7 +14,7 @@ jobs: with: cache: true python-version: ${{ matrix.python-version }} - version: 2.15.0 + version: 2.15.1 - id: pages name: Setup pages uses: actions/configure-pages@983d7736d9b0ae728b81ab479565c72886d7745b # v5.0.0 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index cc775bab..d29b029a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -10,7 +10,7 @@ jobs: with: cache: true python-version: "3.12" - version: 2.15.0 + version: 2.15.1 - id: pages name: Setup pages uses: actions/configure-pages@983d7736d9b0ae728b81ab479565c72886d7745b # v5.0.0 @@ -114,7 +114,7 @@ jobs: with: cache: true python-version: "3.12" - version: 2.15.0 + version: 2.15.1 - run: env | sort - env: PDM_PUBLISH_PASSWORD: ${{ secrets.PDM_PUBLISH_PASSWORD }} diff --git a/.readthedocs.yaml b/.readthedocs.yaml index d612a152..3400837f 100644 --- a/.readthedocs.yaml +++ b/.readthedocs.yaml @@ -21,8 +21,8 @@ build: - env | sort pre_create_environment: - asdf plugin add pdm - - asdf install pdm 2.15.0 - - asdf global pdm 2.15.0 + - asdf install pdm 2.15.1 + - asdf global pdm 2.15.1 post_install: - VIRTUAL_ENV=$READTHEDOCS_VIRTUALENV_PATH make dev-doc pre_build: diff --git a/README.md b/README.md index 07900502..4cac1b17 100644 --- a/README.md +++ b/README.md @@ -58,7 +58,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.0 +pipx install pdm==2.15.1 # Pre-commit: Automates Git hooks for code quality checks. pipx install pre-commit==3.7.0 ``` diff --git a/docs/dev/dev-env.md b/docs/dev/dev-env.md index 9f4664e8..5ac95546 100644 --- a/docs/dev/dev-env.md +++ b/docs/dev/dev-env.md @@ -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.0 +pipx install pdm==2.15.1 # Pre-commit: Automates Git hooks for code quality checks. pipx install pre-commit==3.7.0 ``` diff --git a/includes/sample.jinja b/includes/sample.jinja index f12ceb4e..7c049df3 100644 --- a/includes/sample.jinja +++ b/includes/sample.jinja @@ -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.0 +pipx install pdm==2.15.1 # Pre-commit: Automates Git hooks for code quality checks. pipx install pre-commit==3.7.0 ``` diff --git a/template/.devcontainer/Dockerfile.jinja b/template/.devcontainer/Dockerfile.jinja index 590233eb..0b05cd69 100644 --- a/template/.devcontainer/Dockerfile.jinja +++ b/template/.devcontainer/Dockerfile.jinja @@ -28,7 +28,7 @@ ENV PIPX_BIN_DIR=/usr/local/bin ENV PIPX_DEFAULT_PYTHON=/usr/local/bin/python # Install pdm -RUN pipx install pdm==2.15.0 +RUN pipx install pdm==2.15.1 # Install pre-commit RUN if [ "${PYTHON_VERSION}" = "3.8" ]; then \ diff --git a/template/.readthedocs.yaml.jinja b/template/.readthedocs.yaml.jinja index 49370ec6..1c122877 100644 --- a/template/.readthedocs.yaml.jinja +++ b/template/.readthedocs.yaml.jinja @@ -21,8 +21,8 @@ build: - env | sort pre_create_environment: - asdf plugin add pdm - - asdf install pdm 2.15.0 - - asdf global pdm 2.15.0 + - asdf install pdm 2.15.1 + - asdf global pdm 2.15.1 post_install: - VIRTUAL_ENV=$READTHEDOCS_VIRTUALENV_PATH make dev-doc pre_build: diff --git a/template/[% if repo_host_type == 'github.com' %].github[% endif %]/workflows/ci.yml.jinja b/template/[% if repo_host_type == 'github.com' %].github[% endif %]/workflows/ci.yml.jinja index da6d3de2..668e4114 100644 --- a/template/[% if repo_host_type == 'github.com' %].github[% endif %]/workflows/ci.yml.jinja +++ b/template/[% if repo_host_type == 'github.com' %].github[% endif %]/workflows/ci.yml.jinja @@ -15,7 +15,7 @@ jobs: with: cache: true python-version: {{ '${{ matrix.python-version }}' }} - version: 2.15.0 + version: 2.15.1 - id: pages name: Setup pages uses: actions/configure-pages@983d7736d9b0ae728b81ab479565c72886d7745b # v5.0.0 diff --git a/template/[% if repo_host_type == 'github.com' %].github[% endif %]/workflows/release.yml.jinja b/template/[% if repo_host_type == 'github.com' %].github[% endif %]/workflows/release.yml.jinja index b3ed40a7..703a1cfe 100644 --- a/template/[% if repo_host_type == 'github.com' %].github[% endif %]/workflows/release.yml.jinja +++ b/template/[% if repo_host_type == 'github.com' %].github[% endif %]/workflows/release.yml.jinja @@ -11,7 +11,7 @@ jobs: with: cache: true python-version: "{{ default_py }}" - version: 2.15.0 + version: 2.15.1 - id: pages name: Setup pages uses: actions/configure-pages@983d7736d9b0ae728b81ab479565c72886d7745b # v5.0.0 @@ -125,7 +125,7 @@ jobs: with: cache: true python-version: "{{ default_py }}" - version: 2.15.0 + version: 2.15.1 - run: env | sort - env: PDM_PUBLISH_PASSWORD: {{ '${{ secrets.PDM_PUBLISH_PASSWORD }}' }} diff --git a/template/docs/dev/dev-env.md b/template/docs/dev/dev-env.md index 9f4664e8..5ac95546 100644 --- a/template/docs/dev/dev-env.md +++ b/template/docs/dev/dev-env.md @@ -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.0 +pipx install pdm==2.15.1 # Pre-commit: Automates Git hooks for code quality checks. pipx install pre-commit==3.7.0 ```