Skip to content
Merged
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 .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .readthedocs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
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.23.1",
"pdm": "2.24.0",
"python": "==3.12"
},
"customManagers": [
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion template/.readthedocs.yaml.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -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:
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.23.1",
"pdm": "2.24.0",
"python": "=={{ default_py }}"
},
"customManagers": [
Expand Down
2 changes: 1 addition & 1 deletion template/Makefile.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
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.23.1
version: 2.24.0
cache-dependency-path: |
./pdm.dev.lock
./pdm.lock
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
Loading