mirror of
https://github.com/nvbn/thefuck.git
synced 2025-03-14 06:38:32 +00:00
N/A: Remove deprecated python 3.4 support
More details - https://www.python.org/downloads/release/python-3410/
This commit is contained in:
parent
d10fc80fa5
commit
007cc2ccbe
@ -12,7 +12,6 @@ matrix:
|
||||
- python: "3.6-dev"
|
||||
- python: "3.6"
|
||||
- python: "3.5"
|
||||
- python: "3.4"
|
||||
- python: "2.7"
|
||||
- os: osx
|
||||
language: generic
|
||||
|
4
setup.py
4
setup.py
@ -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)
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user