Skip to content

Discuss when we should end support for Python 3.4 #661

@tleonhardt

Description

@tleonhardt

The last release of Python 3.4 was on March 18, 2019. At this point not even security updates will be provided for Python 3.4.

We should discuss at what point we would like to formally stop supporting Python 3.4 At this point there is no burning need to end support for Python 3.4 or anything. However there are a few points in our code that could be cleaned up where we have conditionals that look like the following which could be cleaned up:

# Python 3.4 require contextlib2 for temporarily redirecting stderr and stdout
if sys.version_info < (3, 5):
    # noinspection PyUnresolvedReferences
    from contextlib2 import redirect_stdout
else:
    from contextlib import redirect_stdout

Metadata

Metadata

Assignees

Type

No type

Projects

No projects

Milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions