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 skips untested versions

Medium 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 through Python 3.13, indicating 3.14 hasn't been validated. Key dependencies like jsons==1.6.3 (which depends on typish==1.9.3 from 2021) and msgpack-numpy==0.4.4.3 (from 2019) rely heavily on Python typing internals that frequently break across major versions. Runtime failures may not surface until the container starts.

Fix in Cursor Fix in Web


ENV INDICO_HOST="try.indico.io"

Expand Down