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:3.14.1

Choose a reason for hiding this comment

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

P1 Badge Replace non-existent python:3.14.1 base image tag

The Dockerfile now uses FROM python:3.14.1, but the official Python images have not shipped a 3.14 series yet (current tags stop at 3.12/3.13), so any Docker build for the GitHub Action will fail immediately when it cannot pull the base image. Please keep the base image on an available tag (e.g., a released Python version) to avoid breaking the action build.

Useful? React with 👍 / 👎.

Copy link

Choose a reason for hiding this comment

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

Bug: Invalid Python version upgrade breaks Docker build

The upgrade from python:3.9 to python:3.14.1 references a Python version that doesn't exist - Python 3.14 has not been released. Additionally, the project's setup.py classifiers and CI workflow only declare support for Python 3.6-3.9, and many dependencies have upper version bounds (like invoke>=1.4.1,<2, pytest>=5,<6, twine>=3,<4) that may be incompatible with newer Python versions. This Docker image will fail to build because the python:3.14.1 base image doesn't exist on Docker Hub.

Fix in Cursor Fix in Web


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