Conversation
Greptile SummaryThis PR removes Python 3.13 and 3.14 from the CI test matrix, reversing the support added in PR #164. However, this creates a critical inconsistency in the project configuration. Major Issues:
Recommendation: Confidence Score: 0/5
Important Files Changed
Last reviewed commit: e356e94 |
| fail-fast: false | ||
| matrix: | ||
| python-version: ['3.10', '3.13', '3.14'] | ||
| python-version: ['3.10'] |
There was a problem hiding this comment.
Removing Python 3.13 and 3.14 from CI creates inconsistency with pyproject.toml (lines 30-31) which still declares support for these versions, and cibuildwheel config (lines 166-167) which still builds wheels for them. This means Python 3.11-3.14 wheels will be distributed but not tested in CI.
Either:
- Keep testing 3.13 and 3.14 in CI (revert this change), OR
- Remove them from
pyproject.tomlclassifiers andcibuildwheelconfig too
| python-version: ['3.10'] | |
| python-version: ['3.10', '3.11', '3.12', '3.13', '3.14'] |
No description provided.