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 docker/backend.dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.9
FROM python:3.13.11
Copy link

Copilot AI Dec 18, 2025

Choose a reason for hiding this comment

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

The pyproject.toml file specifies Python version constraint as "^3.9" which allows Python 3.9.x through 3.x (but not 4.0). While Python 3.13 falls within this range, the major version jump from 3.9 to 3.13 introduces several breaking changes and new features that may affect compatibility with dependencies. Consider updating the pyproject.toml Python version constraint to reflect the minimum supported version after this upgrade (e.g., "^3.13" if dropping support for older versions, or testing to ensure all dependencies work with both 3.9 and 3.13).

Suggested change
FROM python:3.13.11
FROM python:3.9

Copilot uses AI. Check for mistakes.

WORKDIR /

Expand Down
Loading