Skip to content
This repository was archived by the owner on Aug 20, 2025. It is now read-only.

Commit 03fe4a3

Browse files
Merge pull request #63 from statisticsnorway/upgrade-to-python3.13
Upgrade to python 3.13
2 parents 05975a9 + 94ec405 commit 03fe4a3

File tree

5 files changed

+228
-209
lines changed

5 files changed

+228
-209
lines changed

.github/workflows/pr-test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- name: Set up Python
1919
uses: actions/setup-python@v5
2020
with:
21-
python-version: "3.12"
21+
python-version: "3.13"
2222

2323
- name: Install dependencies
2424
run: |

.github/workflows/test-and-build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- name: Set up Python
2323
uses: actions/setup-python@v5
2424
with:
25-
python-version: "3.12"
25+
python-version: "3.13"
2626

2727
- name: Install dependencies
2828
run: |

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Export Poetry Packages
2-
FROM python:3.12-bookworm AS builder
2+
FROM python:3.13-bookworm AS builder
33

44
ENV PYTHONUNBUFFERED=1 \
55
PYTHONDONTWRITEBYTECODE=1 \
@@ -37,7 +37,7 @@ RUN poetry export > requirements.txt
3737
RUN pip install -r requirements.txt --target=/app/dependencies
3838

3939
# Production image
40-
FROM ghcr.io/statisticsnorway/distroless-python3.12
40+
FROM ghcr.io/statisticsnorway/distroless-python3.13
4141
ARG COMMIT_ID
4242
ENV COMMIT_ID=$COMMIT_ID
4343

0 commit comments

Comments
 (0)