fix(python): update to latest Python 3.13 (#389)
All checks were successful
Build Docker / Create Docker Image (release) Successful in 1m10s
Snyk / security (push) Successful in 51s

This app's dependencies do not work with Python 3.14's new async event loop changes, so I am setting the upper version limit to 3.13.

Reviewed-on: #389
This commit was merged in pull request #389.
This commit is contained in:
2025-11-02 17:26:17 +00:00
parent 188d42b9c5
commit fe1b695048
5 changed files with 5 additions and 50 deletions

View File

@@ -1,8 +1,8 @@
FROM python:3.14-slim
FROM python:3.13.9-slim
LABEL maintainer="Luke Tainton <luke@tainton.uk>"
USER root
ENV PYTHONPATH="/run:/usr/local/lib/python3.14/lib-dynload:/usr/local/lib/python3.14/site-packages:/usr/local/lib/python3.14"
ENV PYTHONPATH="/run:/usr/local/lib/python3.13/lib-dynload:/usr/local/lib/python3.13/site-packages:/usr/local/lib/python3.13"
ENV UV_PROJECT_ENVIRONMENT="/usr/local/"
WORKDIR /run