-
Notifications
You must be signed in to change notification settings - Fork 120
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
Support 313 #287
Support 313 #287
Conversation
1a0710b
to
4ad3f95
Compare
Ideas on what could be causing the failure would be helpful. I put a few hours into it this weekend, but I might need a bit of help if people want the 3.13 wheels published soon. |
Errors on Ubuntu 3.13 seem to revolve around On Windows 3.13, the autoprofile seems to be very agressive and profile far more than is requested by the test:
EDIT: I think the problem with windows is actually a unicode issue with (
This seems to be due to CPython adding the character into the stdlib statistics module: https://github.com/search?q=repo%3Apython%2Fcpython%20%E2%89%88&type=code |
f7c7e39
to
1abde89
Compare
I've been able to work around the windows error by avoiding printing lines that cause a The error on Ubuntu with the overflow is harder for me to understand. It feels like there is something deeply wrong in what arguments are being passed into the functions. Fibonacci of 10 should not cause an interger overflow, but in the test for 3.13 on Ubuntu it is. I think there is something wrong with a signature, and the profile is causing wrong arguments to be passed around. I cannot reproduce this behavior on my local machine. It looks like it is a |
Working on updating CI and supporting 3.13