Drop support for Python 2.7 #2157
olafmersmann
started this conversation in
Polls
Replies: 1 comment 1 reply
-
I generally agree. I also have changed the requirement in the readme from Python 2.6 to 3.6. In particular, the For Unfortunately, I don't even know how to install Python < 3.8 on my current laptop, so I can't even test any older version out-of-the-box. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
There are lots of places where we have Python 2/3 compatibility crutches in the code.
I don't think these are necessary anymore and we should remove them and commit ourselves to something like Python 3.6 or maybe even 3.8 as the minimum required version.
No need to rip out all old code, but anytime we touch a file, we could simplify it by removing the
from __future__
imports etc.Currently we have
code-experiments
that import from__future__
code-postprocessing
that import from__future__
code-preprocessing
that import from__future__
do.py
script also import from__future__
.2 votes ·
Beta Was this translation helpful? Give feedback.
All reactions