-
-
Notifications
You must be signed in to change notification settings - Fork 10.9k
ENH: Warn on unsupported Python 3.10+ #17443
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
Conversation
Python 3.9 will be released tomorrow and numpy 1.19.3+ will will support it. |
Shall I bump it to 3.10+? |
Co-authored-by: Eric Wieser <[email protected]>
Yes. 1.19.x already builds with 3.9, we are just waiting for 3.9 to show up on the various platforms for which we produce binary wheels. In general, we try to have a release out within a week or two of the Python release and have working code for the late betas. We can probably update the version when we start testing against it. |
Co-authored-by: Eric Wieser <[email protected]>
Co-authored-by: Eric Wieser <[email protected]>
Thanks @hugovk . |
Fixes #17349.
First commit (f3a6b33): warn when installing on unsupported (new) Python versions.
Based on the similar warning we have in Pillow:
(Not sure if this is an ENT or MAINT.)
Second commit (2ebb453): whilst editing
setup.py
, I also fixed some Flake8 warnings in there. Let me know if I should drop this commit, or parts of it.