Conversation
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: 5db1254379
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
| strategy: | ||
| matrix: | ||
| python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"] | ||
| python-version: ["3.10", "3.11", "3.12", "3.13", "3.14", "3.15"] |
There was a problem hiding this comment.
Remove unavailable Python 3.15 from CI matrix
Adding 3.15 to this matrix currently breaks the test workflow because astral-sh/setup-uv installs the requested interpreter through uv, and uv python install 3.15 --no-progress presently fails with No download found for request: cpython-3.15-linux-x86_64-gnu. Since the check job gates the matrix results, this blocks CI on all PRs until a downloadable 3.15 build exists (or an explicit available pre-release version is pinned).
Useful? React with 👍 / 👎.
Summary
.github/workflows/main.yml.uvpulls Python frompython-build-standalone, which currently ships3.15.0a8, sosetup-uvwill install the alpha automatically when the version is requested explicitly.Test plan