-
Notifications
You must be signed in to change notification settings - Fork 758
Update supported Python versions in windows build #16232
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
Removed Python 3.13 from the list of supported versions for windows for now. It's causing issue.
🔗 Helpful Links🧪 See artifacts and rendered test results at hud.pytorch.org/pr/pytorch/executorch/16232
Note: Links to docs will display an error until the docs builds have been completed. ❗ 1 Active SEVsThere are 1 currently active SEVs. If your PR is affected, please view them below: ✅ You can merge normally! (4 Unrelated Failures)As of commit d21d473 with merge base c493e2d ( BROKEN TRUNK - The following jobs failed but were present on the merge base:👉 Rebase onto the `viable/strict` branch to avoid these failures
UNSTABLE - The following job is marked as unstable, possibly due to flakiness on trunk:
This comment was automatically generated by Dr. CI and updates every 15 minutes. |
This PR needs a
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull request overview
This PR removes Python 3.13 from the Windows wheel build workflow due to compatibility issues. While Linux, macOS, and aarch64-Linux workflows continue to support Python 3.13, the Windows build now only targets Python 3.10-3.12. This creates a platform-specific version constraint that should be documented.
Key Changes
- Removed Python 3.13 from the
python-versionslist in the Windows wheel build workflow
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| with-cuda: disabled | ||
| with-rocm: disabled | ||
| python-versions: '["3.10", "3.11", "3.12", "3.13"]' | ||
| python-versions: '["3.10", "3.11", "3.12"]' |
Copilot
AI
Dec 12, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The removal of Python 3.13 from Windows builds creates an inconsistency with the documentation. Several documentation files (README-wheel.md:8, docs/source/getting-started.md:11, docs/source/quick-start-section.md:20, docs/source/using-executorch-building-from-source.md:31, docs/source/raspberry_pi_llama_tutorial.md:7,22,45) state that Python 3.10-3.13 is supported without mentioning that Windows excludes 3.13. Consider either updating these documentation files to clarify platform-specific Python version support, or adding a note that Windows currently supports only 3.10-3.12.
Summary
Removed Python 3.13 from the list of supported versions for windows for now. It's causing issue.
Test plan
CI