Drop Python 3.3 Support (#747)
* Drop Python 3.3 Support
It's reached end-of-life, and our dependencies have started to drop it.
See https://github.com/nvbn/thefuck/pull/744#issuecomment-353244371
* Revert "Use pytest<3.3 to fix Python 3.3 tests (#746)"
This reverts commit f966ecd4f5.
This commit is contained in:
@@ -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, 3):
|
||||
print('thefuck requires Python version 3.3 or later' +
|
||||
elif (3, 0) < version < (3, 4):
|
||||
print('thefuck requires Python version 3.4 or later' +
|
||||
' ({}.{} detected).'.format(*version))
|
||||
sys.exit(-1)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user