-
Notifications
You must be signed in to change notification settings - Fork 78
Subtle 3.9 incompatibility via simplejson #62
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
Comments
mdsakalu
added a commit
to mdsakalu/aws-lambda-python-runtime-interface-client
that referenced
this issue
Oct 11, 2022
Are there any updates from the team on this? I see that the change was made to upgrade, but it was downgraded again a few weeks ago. This is a blocker for upgrading from 3.8 - I am unable to build a Lambda function because simplejson 3.17.2 does not have wheels for 3.9+. |
@briensea Any update? |
Fixed in 2.0.11. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
So 2.0 claims to support 3.9, however it has a dep on the wrong version of a library that lacks a wheel for 3.9
The relevant part of error
Translated, the error is saying that simplejson lacks a wheel for 3.9.
Comments
Why are we even using simplejson? json is built into 3.x and it appears that simplejson exist so you can cater to people using python 2.6/2.5
Can you remove your dependency on simplejson and use regular json?
Or can you at least depend on a version of simplejson that has a 3.9 wheel? For example 3.17.6
The text was updated successfully, but these errors were encountered: