N/A: Remove deprecated python 3.4 support + fix tests in 2.7 (#1025)

* N/A: Remove deprecated python 3.4 support

More details - https://www.python.org/downloads/release/python-3410/

* N/A: Remove Python 3.4 from appveyor config

* N/A: Fix UnicodeDecodeError with Python 2.7 and newer versions of py.test
This commit is contained in:
Vladimir Iakovlev
2019-12-16 21:55:19 +01:00
committed by GitHub
parent d10fc80fa5
commit 60073bea78
5 changed files with 9 additions and 8 deletions
+2 -2
View File
@@ -26,8 +26,8 @@ if version < (2, 7):
print('thefuck requires Python version 2.7 or later' +
' ({}.{} detected).'.format(*version))
sys.exit(-1)
elif (3, 0) < version < (3, 4):
print('thefuck requires Python version 3.4 or later' +
elif (3, 0) < version < (3, 5):
print('thefuck requires Python version 3.5 or later' +
' ({}.{} detected).'.format(*version))
sys.exit(-1)