-
Notifications
You must be signed in to change notification settings - Fork 36
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 support for Python 3.8. #161
Conversation
In particular, the latest version of NumPy **is** compatible with PyPy 3. The move was spurred on by the absence of NumPy wheels for Python 3.8 in 1.17.0 (while building the `dhermes/bezier` image).
Relevant for removal of On macOS: >>> distutils.sysconfig.get_config_var("EXT_SUFFIX")
'.cpython-37m-darwin.so'
>>> distutils.sysconfig.get_config_var("EXT_SUFFIX")
'.cpython-38-darwin.so' |
As part of this process I tried many pairs of
This seems to contradict the SciPy 1.3.0 release notes
and the 1.4.0 release notes
Every time there was an error it was of the form
UPDATE: One suggested fix for this issue is to just ignore the warning. The
but I haven't (yet) been able to get this work. |
Still want to get onto SciPy 1.4.1, but this will do for now.
No description provided.