-
Notifications
You must be signed in to change notification settings - Fork 17
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
Deprecate addgroup #307
Merged
Merged
Deprecate addgroup #307
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Hopefully closes nrdg#305.
And also add testing on newer 3.10.
Python 3.10 compatibility.
So there you have it.
May help with https://stackoverflow.com/a/69569206
We're hardcore.
…rmat error' on Batch
…image and test_knot
arokem
approved these changes
Feb 25, 2024
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
OK - looks great! I am suggesting to also upgrade our supported Python versions to 3.10 and 3.11, based on https://scientific-python.org/specs/spec-0000/
Committed my changes, so we can get the CI to run with those changes and merge this if it all works. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Builds on #306 to fix failing tests:
I got the tests to succeed using
moto[cloudformation]==4.1.5
.It started succeeding with
moto==4.1.10
. I chose this because4.1.11
is where there were some changes to handling duplicate tags, according to the changelog:When I first tried with
moto==4.1.10
,test_DockerImage
succeeded. However,test_pars_with_new_vpc
started to fail atcloudknot/tests/test_pars.py:298
:I went back to the
moto
changelog, and looked for where there were any potential changes to CloudFormation, and found4.1.6
changed how stack deletion was handled:So, I set
moto==4.1.5
and it worked!There is one warning that we might want to check out:
Originally posted by @maouw in #306 (comment)