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,7 +1,7 @@
#######################
# Step 1: Base target #
#######################
FROM python:3.9-slim-bookworm as base
FROM python:3.13.9-slim-bookworm as base
Comment on lines 1 to +4
Copy link
Copy Markdown

Choose a reason for hiding this comment

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

P1 Badge Rebase image to Python 3.13 without updating incompatible deps

Switching the base image to python:3.13.9-slim-bookworm causes the build to fail at pip install -r requirements.txt. Several pinned packages in requirements.txt are only published for Python <3.13—for example numpy==1.26.4 declares Requires-Python <3.13 and pandas==1.5.3 targets older interpreters. Under 3.13 pip will produce No matching distribution errors, so the Docker image cannot be built. Either update the dependency pins to versions that ship wheels for Python 3.13 or stay on a supported Python base image.

Useful? React with 👍 / 👎.

ARG http_proxy
ARG https_proxy
ARG no_proxy
Expand Down
Loading