diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e824a38..6e74ca9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,5 +13,5 @@ jobs: - uses: actions/checkout@v7 - uses: actions/setup-python@v6 with: - python-version: '3.12' + python-version: '3.14' - uses: pre-commit/action@v3.0.1 diff --git a/.python-version b/.python-version index e4fba21..6324d40 100644 --- a/.python-version +++ b/.python-version @@ -1 +1 @@ -3.12 +3.14 diff --git a/src/Dockerfile-api b/src/Dockerfile-api index 3c106c0..d1665cf 100644 --- a/src/Dockerfile-api +++ b/src/Dockerfile-api @@ -1,4 +1,4 @@ -FROM python:3.12-slim-bookworm +FROM python:3.14-slim-bookworm ARG FLASK_RUN_PORT=5000 diff --git a/src/Dockerfile-bot b/src/Dockerfile-bot index e6c7c4f..080ac6c 100644 --- a/src/Dockerfile-bot +++ b/src/Dockerfile-bot @@ -1,4 +1,4 @@ -FROM python:3.12-slim-bookworm +FROM python:3.14-slim-bookworm ENV PYTHONUNBUFFERED=1 \ PYTHONDONTWRITEBYTECODE=1 \