Skip to content
Closed
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 .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
with:
# Floor of requires-python = ">=3.10" (pyproject.toml) — pinning the
# floor verifies the declared minimum actually parses and builds.
python-version: '3.10'
python-version: '3.14'
Comment on lines 44 to +46

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

🎯 Functional Correctness | 🟠 Major | ⚡ Quick win

Continue testing the declared Python floor.

pyproject.toml still declares requires-python = ">=3.10", but this workflow now tests only Python 3.14. The adjacent comment is therefore no longer accurate, and Python 3.10 regressions can pass CI unnoticed. Use a matrix containing both 3.10 and 3.14, or update the package metadata if 3.10 support is intentionally being dropped.

Proposed fix
-          python-version: '3.14'
+          python-version: ['3.10', '3.14']
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In @.github/workflows/ci.yml around lines 44 - 46, Update the CI workflow’s
Python version configuration to test both the declared minimum Python 3.10 and
Python 3.14, preserving the existing floor-validation intent and keeping the
adjacent comment accurate.


- name: Byte-compile all Python sources
run: python -m compileall -q .
Expand Down
Loading