Install Python 3.13 to fix failing PR checks with older CLI versions#3212
Merged
Install Python 3.13 to fix failing PR checks with older CLI versions#3212
Conversation
231d03c to
fe67558
Compare
fe67558 to
3569065
Compare
Contributor
There was a problem hiding this comment.
Pull Request Overview
This PR adds Python 3.13 installation support to fix failing PR checks that were caused by an incompatibility between older CLI versions and Python 3.14. The solution implements an installPython option in workflow templates that installs Python 3.13 for all versions except nightly-latest.
- Adds Python installation infrastructure to the sync.py script
- Enables Python installation for all PR check workflows that perform Python analysis
- Generates corresponding workflow files with Python setup steps
Reviewed Changes
Copilot reviewed 19 out of 19 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
| pr-checks/sync.py | Implements installPython option support and Python 3.13 installation logic |
| pr-checks/checks/*.yml | Enables installPython: true for various test workflows |
| .github/workflows/__*.yml | Generated workflow files with Python installation steps |
henrymercer
approved these changes
Oct 17, 2025
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Some of our PR checks are currently failing due to an incompatibility between older CLI versions and Python 3.14. The problem is fixed in
nightly-latest, but older CLI releases need Python 3.13 or below.This PR updates
sync.pyto support aninstallPythonoption in workflow templates. I have set this option totruefor all PR checks that run a Python analysis.Risk assessment
For internal use only. Please select the risk level of this change:
Which use cases does this change impact?
CI only.
How did/will you validate this change?
pr-checks).If something goes wrong after this change is released, what are the mitigation and rollback strategies?
CI only.
How will you know if something goes wrong after this change is released?
CI will continue to fail.
Merge / deployment checklist