-
Notifications
You must be signed in to change notification settings - Fork 2.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
Python 3.12b2 testing #4695
Python 3.12b2 testing #4695
Conversation
All unit tests (pytest & test_embed) work with Python 3.12.0b2, except the very last test in upstream.yml:
|
Setuptools is no longer installed by default in 3.12. It’s just another library like any other. |
env: | ||
SETUPTOOLS_USE_DISTUTILS: stdlib |
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.
Testing this - this is invalid in 3.12, there is no stdlib distutils, and we shouldn't be using before that either. Just looking to see what fails.
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.
FYI, I expect this was to build numpy before wheels were available.
Ignoring two PyPy test_iostream flakes. |
Description
Enable all testing (test_embed) and
pip install setuptools
forSetuptools helpers test
(setuptools is not longer installed by default: https://docs.python.org/3.12/whatsnew/3.12.html#removed).First time all testing succeeds with Python 3.12!
Suggested changelog entry: