-
Notifications
You must be signed in to change notification settings - Fork 22
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
Issue with Python 3.10 #7
Comments
Same thing here. We've started to see the problem today. After looking for a solution, the problem seems to be that collections.MutableMapping has been deprecated since Python 3.3, and was officially removed since Python 3.9. |
Currently experiencing the same issue here. @scottwestover @daniterrin did you had any success solving that? |
Currently experiencing same issue. Looked at trying this out and suggesting that to this branch: |
Maybe we can simply update the Dockerfile to use a compatible python version?
|
@edmarbarros I was able to get around the issue by using the aws cli directly for my current workflow. I was not aware that the AWS-CLI was preinstalled in the GitHub hosted environments (my workflows are currently using these). I found a reference to that here: aws/aws-cli#4835 Example of what I am running now:
This resolved the issue for the time being. |
@edmarbarros I went for a pretty similar approach. I'm now using the official docker image of aws-cli in my CI-CD pipeline in Github. You can find more info here aws/aws-cli#3553. I assume that the issue might also be fixed by changing the version of aws-cli that dockerfile retrieves from 3-alpine. However, I can't test it. |
based on: ItsKarma/aws-cli#7
Thank you for this and apologies for the incredibly delayed response. |
Not sure if this is the right place to report this issue, but I just started getting the following error today in my existing workflows.
It looks like the docker image is currently pointed to
3-alpine
, and this was recently updated to use Python 3.10. The aws-cli page mentions that it now supports Python 3.10.The text was updated successfully, but these errors were encountered: