-
-
Notifications
You must be signed in to change notification settings - Fork 625
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
Removal of Python 3.8 support (end-of-life on October 2024) #1173
Labels
Milestone
Comments
ericwb
added a commit
to ericwb/bandit
that referenced
this issue
Sep 24, 2024
As of October 1st, 2024, Python 3.8 becomes end-of-life. As such Bandit should also no longer support the version. This commit will bump minimum version of support to Python 3.9 and remove any legacy 3.8 specific code. This is a breaking change for those still using Python 3.8 and so the minor version will be bumped to 1.8.x for it. Closes PyCQA#1173 Signed-off-by: Eric Brown <eric_wade_brown@yahoo.com>
ericwb
added a commit
to ericwb/bandit
that referenced
this issue
Oct 7, 2024
As of October 1st, 2024, Python 3.8 becomes end-of-life. As such Bandit should also no longer support the version. This commit will bump minimum version of support to Python 3.9 and remove any legacy 3.8 specific code. This is a breaking change for those still using Python 3.8 and so the minor version will be bumped to 1.8.x for it. Closes PyCQA#1173 Signed-off-by: Eric Brown <eric_wade_brown@yahoo.com>
ericwb
added a commit
to ericwb/bandit
that referenced
this issue
Oct 7, 2024
As of October 1st, 2024, Python 3.8 becomes end-of-life. As such Bandit should also no longer support the version. This commit will bump minimum version of support to Python 3.9 and remove any legacy 3.8 specific code. This is a breaking change for those still using Python 3.8 and so the minor version will be bumped to 1.8.x for it. Closes PyCQA#1173 Signed-off-by: Eric Brown <eric_wade_brown@yahoo.com>
ericwb
added a commit
to ericwb/bandit
that referenced
this issue
Oct 7, 2024
As of October 1st, 2024, Python 3.8 becomes end-of-life. As such Bandit should also no longer support the version. This commit will bump minimum version of support to Python 3.9 and remove any legacy 3.8 specific code. This is a breaking change for those still using Python 3.8 and so the minor version will be bumped to 1.8.x for it. Closes PyCQA#1173 Signed-off-by: Eric Brown <eric_wade_brown@yahoo.com>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Is your feature request related to a problem? Please describe.
This feature tracks the removal of support for Python 3.8 since it will be end-of-life as of October 2024. See https://devguide.python.org/versions/ for details.
Describe the solution you'd like
sys.version_info >= (3, 9):
sys.version_info >= (3, 9):
Should also put this feature in a new minor release (1.8.0)
Describe alternatives you've considered
n/a
Additional context
Love this idea? Give it a 👍. We prioritize fulfilling features with the most 👍.
The text was updated successfully, but these errors were encountered: