diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 86923149..e6af396a 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.23.1 + version: 2.24.0 cache-dependency-path: | ./pdm.dev.lock ./pdm.lock diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 59f787ce..1bcc0cc0 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.23.1 + version: 2.24.0 cache-dependency-path: | ./pdm.dev.lock ./pdm.lock @@ -129,7 +129,7 @@ jobs: with: cache: true python-version: '3.12' - version: 2.23.1 + version: 2.24.0 cache-dependency-path: | ./pdm.dev.lock ./pdm.lock diff --git a/.readthedocs.yaml b/.readthedocs.yaml index 09ebea4b..cfbe2476 100644 --- a/.readthedocs.yaml +++ b/.readthedocs.yaml @@ -23,7 +23,7 @@ build: post_system_dependencies: - env | sort pre_create_environment: - - PIPX_BIN_DIR=$READTHEDOCS_VIRTUALENV_PATH/bin pipx install pdm==2.23.1 + - PIPX_BIN_DIR=$READTHEDOCS_VIRTUALENV_PATH/bin pipx install pdm==2.24.0 post_install: - VIRTUAL_ENV=$READTHEDOCS_VIRTUALENV_PATH make dev-doc post_build: diff --git a/.renovaterc.json b/.renovaterc.json index 704a9464..67e8c527 100644 --- a/.renovaterc.json +++ b/.renovaterc.json @@ -1,7 +1,7 @@ { "$schema": "https://docs.renovatebot.com/renovate-schema.json", "constraints": { - "pdm": "2.23.1", + "pdm": "2.24.0", "python": "==3.12" }, "customManagers": [ diff --git a/Makefile b/Makefile index 4fd9298c..559f6164 100644 --- a/Makefile +++ b/Makefile @@ -64,7 +64,7 @@ prerequisites: pipx list --short | grep -q "check-jsonschema 0.33.0" || pipx install --force check-jsonschema==0.33.0 pipx list --short | grep -q "codespell 2.4.1" || pipx install --force codespell[toml]==2.4.1 pipx list --short | grep -q "copier 9.6.0" || pipx install --force copier==9.6.0 - pipx list --short | grep -q "pdm 2.23.1" || pipx install --force pdm==2.23.1 + pipx list --short | grep -q "pdm 2.24.0" || pipx install --force pdm==2.24.0 pipx list --short | grep -q "pre-commit 4.2.0" || pipx install --force pre-commit==4.2.0 pipx list --short | grep -q "pyproject-fmt 2.5.1" || pipx install --force pyproject-fmt==2.5.1 pipx list --short | grep -q "ruff 0.11.5" || pipx install --force ruff==0.11.5 diff --git a/template/.readthedocs.yaml.jinja b/template/.readthedocs.yaml.jinja index fa50344c..e4549b98 100644 --- a/template/.readthedocs.yaml.jinja +++ b/template/.readthedocs.yaml.jinja @@ -23,7 +23,7 @@ build: post_system_dependencies: - env | sort pre_create_environment: - - PIPX_BIN_DIR=$READTHEDOCS_VIRTUALENV_PATH/bin pipx install pdm==2.23.1 + - PIPX_BIN_DIR=$READTHEDOCS_VIRTUALENV_PATH/bin pipx install pdm==2.24.0 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 cef02683..3f61a8a8 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.23.1", + "pdm": "2.24.0", "python": "=={{ default_py }}" }, "customManagers": [ diff --git a/template/Makefile.jinja b/template/Makefile.jinja index 54613231..e2b2535b 100644 --- a/template/Makefile.jinja +++ b/template/Makefile.jinja @@ -70,7 +70,7 @@ prerequisites: {% if project_name == "Serious Scaffold Python" %} pipx list --short | grep -q "copier 9.6.0" || pipx install --force copier==9.6.0 {% endif %} - pipx list --short | grep -q "pdm 2.23.1" || pipx install --force pdm==2.23.1 + pipx list --short | grep -q "pdm 2.24.0" || pipx install --force pdm==2.24.0 pipx list --short | grep -q "pre-commit 4.2.0" || pipx install --force pre-commit==4.2.0 pipx list --short | grep -q "pyproject-fmt 2.5.1" || pipx install --force pyproject-fmt==2.5.1 pipx list --short | grep -q "ruff 0.11.5" || pipx install --force ruff==0.11.5 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 65f9fcee..c8724467 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.23.1 + version: 2.24.0 cache-dependency-path: | ./pdm.dev.lock ./pdm.lock 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 e4ab3b51..0c826274 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.23.1 + version: 2.24.0 cache-dependency-path: | ./pdm.dev.lock ./pdm.lock @@ -140,7 +140,7 @@ jobs: with: cache: true python-version: '{{ default_py }}' - version: 2.23.1 + version: 2.24.0 cache-dependency-path: | ./pdm.dev.lock ./pdm.lock