From 55a7be4c5a9cc0e03311f57ebbd9c3c72a412e05 Mon Sep 17 00:00:00 2001 From: "serious-scaffold[bot]" <160990600+serious-scaffold[bot]@users.noreply.github.com> Date: Mon, 30 Sep 2024 12:10:34 +0000 Subject: [PATCH] build(deps): update dependency pdm to v2.19.1 (#742) Co-authored-by: serious-scaffold[bot] <160990600+serious-scaffold[bot]@users.noreply.github.com> --- .github/workflows/ci.yml | 2 +- .github/workflows/release.yml | 4 ++-- .readthedocs.yaml | 2 +- .renovaterc.json | 2 +- Makefile | 2 +- template/.readthedocs.yaml.jinja | 2 +- template/.renovaterc.json.jinja | 2 +- template/Makefile.jinja | 2 +- .../workflows/ci.yml.jinja | 2 +- .../workflows/release.yml.jinja | 4 ++-- 10 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 64aeabf3..67308e33 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -24,7 +24,7 @@ jobs: with: cache: true python-version: ${{ matrix.python-version }} - version: 2.18.2 + version: 2.19.1 - run: env | sort - run: make prerequisites - run: make dev diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index ddd1fc1b..e29d5449 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -22,7 +22,7 @@ jobs: with: cache: true python-version: '3.12' - version: 2.18.2 + version: 2.19.1 - run: env | sort - run: make dev-doc - run: make doc @@ -123,7 +123,7 @@ jobs: with: cache: true python-version: '3.12' - version: 2.18.2 + version: 2.19.1 - run: env | sort - env: PDM_PUBLISH_PASSWORD: ${{ secrets.PDM_PUBLISH_PASSWORD }} diff --git a/.readthedocs.yaml b/.readthedocs.yaml index f974fda4..47875178 100644 --- a/.readthedocs.yaml +++ b/.readthedocs.yaml @@ -22,7 +22,7 @@ build: post_system_dependencies: - env | sort pre_create_environment: - - PIPX_BIN_DIR=$READTHEDOCS_VIRTUALENV_PATH/bin pipx install pdm==2.18.2 + - PIPX_BIN_DIR=$READTHEDOCS_VIRTUALENV_PATH/bin pipx install pdm==2.19.1 post_install: - VIRTUAL_ENV=$READTHEDOCS_VIRTUALENV_PATH make dev-doc post_build: diff --git a/.renovaterc.json b/.renovaterc.json index c322ec79..dc0d5463 100644 --- a/.renovaterc.json +++ b/.renovaterc.json @@ -1,7 +1,7 @@ { "$schema": "https://docs.renovatebot.com/renovate-schema.json", "constraints": { - "pdm": "2.18.2", + "pdm": "2.19.1", "python": "==3.12" }, "customManagers": [ diff --git a/Makefile b/Makefile index 2277e1f1..e0e6a5b0 100644 --- a/Makefile +++ b/Makefile @@ -57,7 +57,7 @@ dev: # Install standalone tools prerequisites: pipx install --force codespell[toml]==2.3.0 - pipx install --force pdm==2.18.2 + pipx install --force pdm==2.19.1 ifeq ($(PIPX_PYTHON_VERSION), 3.8) pipx install --force pre-commit==3.5.0 else diff --git a/template/.readthedocs.yaml.jinja b/template/.readthedocs.yaml.jinja index 361909c6..5669dfa3 100644 --- a/template/.readthedocs.yaml.jinja +++ b/template/.readthedocs.yaml.jinja @@ -22,7 +22,7 @@ build: post_system_dependencies: - env | sort pre_create_environment: - - PIPX_BIN_DIR=$READTHEDOCS_VIRTUALENV_PATH/bin pipx install pdm==2.18.2 + - PIPX_BIN_DIR=$READTHEDOCS_VIRTUALENV_PATH/bin pipx install pdm==2.19.1 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 17e202fc..4164c252 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.18.2", + "pdm": "2.19.1", "python": "=={{ default_py }}" }, "customManagers": [ diff --git a/template/Makefile.jinja b/template/Makefile.jinja index 57808b6d..09f0ca23 100644 --- a/template/Makefile.jinja +++ b/template/Makefile.jinja @@ -59,7 +59,7 @@ dev: # Install standalone tools prerequisites: pipx install --force codespell[toml]==2.3.0 - pipx install --force pdm==2.18.2 + pipx install --force pdm==2.19.1 ifeq ($(PIPX_PYTHON_VERSION), 3.8) pipx install --force pre-commit==3.5.0 else 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 26a52fe6..87da4235 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 @@ -25,7 +25,7 @@ jobs: with: cache: true python-version: {{ '${{ matrix.python-version }}' }} - version: 2.18.2 + version: 2.19.1 - run: env | sort - run: make prerequisites - run: make dev 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 d244c04f..145134de 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 @@ -23,7 +23,7 @@ jobs: with: cache: true python-version: '{{ default_py }}' - version: 2.18.2 + version: 2.19.1 - run: env | sort - run: make dev-doc - run: make doc @@ -134,7 +134,7 @@ jobs: with: cache: true python-version: '{{ default_py }}' - version: 2.18.2 + version: 2.19.1 - run: env | sort - env: PDM_PUBLISH_PASSWORD: {{ '${{ secrets.PDM_PUBLISH_PASSWORD }}' }}