-
-
Notifications
You must be signed in to change notification settings - Fork 29
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
Failure on 32 bit Linux #41
Comments
From the trace, it looks like it's a problem with cryptography... But given the comment @ https://github.com/python-trio/trustme/blob/fb7ef8b/trustme/__init__.py#L61-L65 it looks like platform limitations exist with Windows as well. I think this could be addressed within Timestamp of 2147483647 corresponds to GMT Tuesday, January 19, 2038 3:14:07 AM |
Yeah, this is a cryptography bug, and actually someone else ran into it 2 weeks ago and has a PR in progress: pyca/cryptography#4658 In the mean time though I guess we should restrict expiration dates to 2038. |
Here's a curious note: signed 32-bit The Windows docs don't give any clue... they claim that it only works until December 31, 3000, which is empirically not true. It looks like the last second where Windows This is totally off-topic but now that I noticed it's bugging me. |
@njsmith on that M$ page you referred there's a note about 32bit platforms:
So I'd say it's documented. |
@webknjaz the part that isn't documented is the actual range of the 64-bit |
Oh |
When building aiohttp binary wheels we run tests on built files.
On 32 bit Linux it produces the following error:
@njsmith do you have an idea how to fix it?
The text was updated successfully, but these errors were encountered: