Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.10.4
FROM python:3.14.3
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Major Python version jump to untested 3.14 runtime

High Severity

The base image jumps from python:3.10.4 to python:3.14.3, skipping four minor versions. The project's pyproject.toml classifiers only declare support up to Python 3.13, and tox.ini only tests through py313 — meaning Python 3.14 has never been validated in CI. Python 3.14 removed several deprecated APIs (in asyncio, importlib.abc, ast, etc.) that could cause runtime failures. Additionally, the pinned dependency msgpack-numpy==0.4.4.3 (from 2019) was never tested against Python 3.14 and may break at runtime despite installing cleanly as a pure-Python wheel.

Fix in Cursor Fix in Web


ENV INDICO_HOST="try.indico.io"

Expand Down