Skip to content

Commit 8cb771c

Browse files
chore(deps): update dependency python
| datasource | package | from | to | | --------------- | ----------------------- | ------- | ------ | | github-releases | actions/python-versions | 3.10.17 | 3.13.3 | | github-releases | actions/python-versions | 3.11.12 | 3.13.3 | | docker | python | 3.12 | 3.13 |
1 parent 29d06b5 commit 8cb771c

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- name: Setup Python
2121
uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b
2222
with:
23-
python-version: "3.11"
23+
python-version: "3.13"
2424

2525
- name: Install Poetry
2626
uses: abatilo/actions-poetry@e78f54a89cb052fff327414dd9ff010b5d2b4dbd

.github/workflows/rigging_pr_description.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- name: Set up Python
2121
uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38 # v5.4.0
2222
with:
23-
python-version: "3.10"
23+
python-version: "3.13"
2424

2525
- name: Install uv
2626
run: |

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM python:3.12-bookworm AS builder
1+
FROM python:3.13-bookworm AS builder
22

33
RUN pip install poetry==1.8.3
44

@@ -13,7 +13,7 @@ COPY pyproject.toml poetry.lock README.md ./
1313

1414
RUN poetry install --no-root && rm -rf $POETRY_CACHE_DIR
1515

16-
FROM python:3.12-slim-bookworm AS runtime
16+
FROM python:3.13-slim-bookworm AS runtime
1717

1818
# install requirements to use docker from within docker
1919
RUN apt-get update && apt-get install -y libssl-dev curl ca-certificates

0 commit comments

Comments
 (0)