-
Notifications
You must be signed in to change notification settings - Fork 291
Don't use thread-free python version 3.13t on Windows #5077
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -138,7 +138,7 @@ def get_pre_commands( | |||||||||
| # Run inside a python venv | ||||||||||
| if os_group == "windows": | ||||||||||
|
||||||||||
| if os_group == "windows": | |
| if os_group == "windows": | |
| # Detect if `py -3` is Python 3.13 in experimental free-threaded mode; if so, avoid using it | |
| # to create the venv (due to CFFI compatibility issues) and instead fall back to `py -3.13`. |
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 fallback to
py -3.13assumes that a non-free-threaded Python 3.13 is available on the system. While the Windows Python launcher will provide an error if 3.13 is not installed, consider adding a comment to document this assumption and the expected Helix environment configuration.