Skip to content

Commit 9deebaf

Browse files
committed
Python 3.14 and bump of deps
1 parent cf444c6 commit 9deebaf

File tree

6 files changed

+994
-585
lines changed

6 files changed

+994
-585
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- uses: actions/setup-python@v5
1818
id: setup-python
1919
with:
20-
python-version: 3.13
20+
python-version: 3.14
2121

2222
- name: Install Poetry
2323
uses: snok/install-poetry@v1
@@ -72,7 +72,7 @@ jobs:
7272
- uses: actions/setup-python@v5
7373
id: setup-python
7474
with:
75-
python-version: 3.13
75+
python-version: 3.14
7676

7777
- name: Install Poetry
7878
uses: snok/install-poetry@v1

.python-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.13.3
1+
3.14.2

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Stage 1: Build
2-
FROM python:3.13-slim-bookworm AS builder
2+
FROM python:3.14-slim-bookworm AS builder
33

44
ENV PYTHONUNBUFFERED=1 \
55
POETRY_NO_INTERACTION=1 \
@@ -19,7 +19,7 @@ RUN apt-get update && \
1919
rm -rf $POETRY_CACHE_DIR
2020

2121
# Stage 2: Runtime environment
22-
FROM python:3.13-slim-bookworm
22+
FROM python:3.14-slim-bookworm
2323

2424
ENV PYTHONUNBUFFERED=1 \
2525
VIRTUAL_ENV=/app/.venv \

Dockerfile.pyinstaller

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM danihodovic/pyinstaller-builder:latest
22

3-
ARG PYTHON_VERSION=3.12
3+
ARG PYTHON_VERSION=3.14
44

55
RUN pyenv install $PYTHON_VERSION && pyenv global $PYTHON_VERSION
66

0 commit comments

Comments
 (0)