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,5 +1,5 @@
# This Dockerfile is only for GitHub Actions
FROM python:3.9
FROM python:latest
Copy link

Choose a reason for hiding this comment

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

Unpinned latest tag breaks build with incompatible Python

High Severity

Changing from python:3.9 to python:latest (currently Python 3.14) will almost certainly break the pip install . step on line 15. The project's setup.py only classifies support for Python 3.6–3.9, and its dependencies have tight upper bounds incompatible with Python 3.12+: invoke>=1.4.1,<2 has known issues on 3.12+, tomlkit>=0.10.0,<0.11.0 lacks 3.12+ support, and Python 3.12 removed distutils/imp which old dependency versions rely on. Additionally, latest is a moving target, making builds non-reproducible.

Fix in Cursor Fix in Web


RUN set -ex; \
apt-get update; \
Expand Down