-
Notifications
You must be signed in to change notification settings - Fork 664
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
Remove support for py36 and py37 #3436
Merged
Merged
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
tadeboro
approved these changes
Feb 7, 2022
cidrblock
approved these changes
Feb 7, 2022
greg-hellings
approved these changes
Feb 8, 2022
ganeshrn
approved these changes
Feb 10, 2022
ssbarnea
added a commit
to ansible/ansible-compat
that referenced
this pull request
Feb 25, 2022
Related: ansible/molecule#3436 Related: ansible/ansible-lint#1850
ssbarnea
added a commit
to ansible/ansible-compat
that referenced
this pull request
Feb 25, 2022
Related: ansible/molecule#3436 Related: ansible/ansible-lint#1850
ssbarnea
added a commit
to ansible/ansible-compat
that referenced
this pull request
Feb 25, 2022
Related: ansible/molecule#3436 Related: ansible/ansible-lint#1850
ssbarnea
added a commit
to ansible/ansible-compat
that referenced
this pull request
Feb 25, 2022
ssbarnea
pushed a commit
to ansible-community/molecule-lxd
that referenced
this pull request
Apr 11, 2022
ziegenberg
added a commit
to ziegenberg/molecule-docker
that referenced
this pull request
Apr 23, 2022
Since ansible/molecule#3436 molecule doesn't support python < 3.8, so we drop support for python 3.6 and 3.7. Signed-off-by: Daniel Ziegenberg <daniel@ziegenberg.at>
ssbarnea
pushed a commit
to ansible-community/molecule-docker
that referenced
this pull request
May 29, 2022
Since ansible/molecule#3436 molecule doesn't support python < 3.8, so we drop support for python 3.6 and 3.7. Signed-off-by: Daniel Ziegenberg <daniel@ziegenberg.at>
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.
As part of reduce maintenance of molecule and its plugins, starting with v4, molecule require
python_version>=3.8
.This change marks the start of
4.x
and once is merged we will create astable/3.6
branch from the last comment before it. That branch will be used to backport changes needed for the older versions.One additional reason for making this move is a recent explosion of dependencies dropping support for py36 or even py37:
pytest
,coverage
,pip-compile
,tomli
.Related: ansible/ansible-lint#1850