-
Notifications
You must be signed in to change notification settings - Fork 124
Closed
Description
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