-
-
Notifications
You must be signed in to change notification settings - Fork 1k
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
Add free-threaded Python support #2809
Conversation
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.
Seems the CI is failing, can you fix it? @robsdedude Thanks
Head branch was pushed to by a user without write access
@robsdedude seems it is still failing 🤔 |
Now CI should pass. I made the CI run on my fork to increase the iteration velocity 🙃 |
Thanks so much for fixing this and seeing the PR through @robsdedude. Our team at Quansight Labs is trying to spot ecosystem issues like this around free-threaded Python. If you are aware of any other issues, we should chat! |
This reverts some changes introduced in pypa#2809
Add free-threaded Python support
This PR adds the possibility to specify a free threaded Python.
Examples:
virtualenv -p 3.13t .venv
virtualenv -p 3t .venv
virtualenv -p cpython3.13t .venv
To be able to change
PythonInfo
to contain a flag whether the python version is a free-threaded one or not, I've introduced versioning to the py info cache files as I couldn't find another way to invalidate old cached infos.Thanks for contributing, make sure you address all the checklists (for details on how see development documentation)
tox -e fix
)docs/changelog
folderCloses: #2776