From 9de42ee3954016d10d5bc39509a8b794b19a7df8 Mon Sep 17 00:00:00 2001 From: "huxuan-assistant[bot]" <163485190+huxuan-assistant[bot]@users.noreply.github.com> Date: Thu, 23 May 2024 07:30:40 +0000 Subject: [PATCH] build(deps): update dependency pdm to v2.15.3 --- .devcontainer/Dockerfile | 2 +- .github/workflows/ci.yml | 2 +- .github/workflows/release.yml | 4 ++-- .readthedocs.yaml | 4 ++-- .renovaterc.json | 2 +- README.md | 2 +- docs/development/setup-dev-env.md | 2 +- includes/sample.jinja | 2 +- template/.devcontainer/Dockerfile.jinja | 2 +- template/.readthedocs.yaml.jinja | 4 ++-- template/.renovaterc.json.jinja | 2 +- .../workflows/ci.yml.jinja | 2 +- .../workflows/release.yml.jinja | 4 ++-- template/docs/development/setup-dev-env.md | 2 +- 14 files changed, 18 insertions(+), 18 deletions(-) diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index 75eebaed..7a9ffd9c 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -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 \ diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 326c7d25..8c14679b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index f40fad5d..958dc9d9 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -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 @@ -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 }} diff --git a/.readthedocs.yaml b/.readthedocs.yaml index a40addee..5787fa68 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.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: diff --git a/.renovaterc.json b/.renovaterc.json index e8315ef0..3bca9e8a 100644 --- a/.renovaterc.json +++ b/.renovaterc.json @@ -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": [ diff --git a/README.md b/README.md index 26af18b8..f4bc66c1 100644 --- a/README.md +++ b/README.md @@ -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 ``` diff --git a/docs/development/setup-dev-env.md b/docs/development/setup-dev-env.md index 1c8a7007..7de20deb 100644 --- a/docs/development/setup-dev-env.md +++ b/docs/development/setup-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.2 +pipx install pdm==2.15.3 # Pre-commit: Automates Git hooks for code quality checks. pipx install pre-commit==3.7.1 ``` diff --git a/includes/sample.jinja b/includes/sample.jinja index 37b275a9..945ef1c8 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.2 +pipx install pdm==2.15.3 # Pre-commit: Automates Git hooks for code quality checks. pipx install pre-commit==3.7.1 ``` diff --git a/template/.devcontainer/Dockerfile.jinja b/template/.devcontainer/Dockerfile.jinja index b54b6ea1..995382c9 100644 --- a/template/.devcontainer/Dockerfile.jinja +++ b/template/.devcontainer/Dockerfile.jinja @@ -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 \ diff --git a/template/.readthedocs.yaml.jinja b/template/.readthedocs.yaml.jinja index 4f1f5f1e..84d5d5db 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.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: diff --git a/template/.renovaterc.json.jinja b/template/.renovaterc.json.jinja index 07e16988..c88c536d 100644 --- a/template/.renovaterc.json.jinja +++ b/template/.renovaterc.json.jinja @@ -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": [ diff --git a/template/[% if repo_platform == 'github' %].github[% endif %]/workflows/ci.yml.jinja b/template/[% if repo_platform == 'github' %].github[% endif %]/workflows/ci.yml.jinja index 8d77feb5..a616fbd9 100644 --- a/template/[% if repo_platform == 'github' %].github[% endif %]/workflows/ci.yml.jinja +++ b/template/[% if repo_platform == 'github' %].github[% endif %]/workflows/ci.yml.jinja @@ -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 diff --git a/template/[% if repo_platform == 'github' %].github[% endif %]/workflows/release.yml.jinja b/template/[% if repo_platform == 'github' %].github[% endif %]/workflows/release.yml.jinja index 3ea3b7ff..c98ec9b2 100644 --- a/template/[% if repo_platform == 'github' %].github[% endif %]/workflows/release.yml.jinja +++ b/template/[% if repo_platform == 'github' %].github[% endif %]/workflows/release.yml.jinja @@ -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 @@ -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 }}' }} diff --git a/template/docs/development/setup-dev-env.md b/template/docs/development/setup-dev-env.md index 1c8a7007..7de20deb 100644 --- a/template/docs/development/setup-dev-env.md +++ b/template/docs/development/setup-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.2 +pipx install pdm==2.15.3 # Pre-commit: Automates Git hooks for code quality checks. pipx install pre-commit==3.7.1 ```