mirror of
https://github.com/nvbn/thefuck.git
synced 2025-04-15 15:20:42 +01:00
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 f966ecd4f5b8221ee15e843f5ec287e1f7cca940.
This commit is contained in:
parent
57fb6e079a
commit
0640509895
@ -11,9 +11,6 @@ matrix:
|
|||||||
- os: linux
|
- os: linux
|
||||||
dist: trusty
|
dist: trusty
|
||||||
python: "3.4"
|
python: "3.4"
|
||||||
- os: linux
|
|
||||||
dist: trusty
|
|
||||||
python: "3.3"
|
|
||||||
- os: linux
|
- os: linux
|
||||||
dist: trusty
|
dist: trusty
|
||||||
python: "2.7"
|
python: "2.7"
|
||||||
|
@ -92,7 +92,7 @@ Reading package lists... Done
|
|||||||
|
|
||||||
## Requirements
|
## Requirements
|
||||||
|
|
||||||
- python (3.3+)
|
- python (3.4+)
|
||||||
- pip
|
- pip
|
||||||
- python-dev
|
- python-dev
|
||||||
|
|
||||||
|
@ -3,7 +3,6 @@ build: false
|
|||||||
environment:
|
environment:
|
||||||
matrix:
|
matrix:
|
||||||
- PYTHON: "C:/Python27"
|
- PYTHON: "C:/Python27"
|
||||||
- PYTHON: "C:/Python33"
|
|
||||||
- PYTHON: "C:/Python34"
|
- PYTHON: "C:/Python34"
|
||||||
- PYTHON: "C:/Python35"
|
- PYTHON: "C:/Python35"
|
||||||
- PYTHON: "C:/Python36"
|
- PYTHON: "C:/Python36"
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
pip
|
pip
|
||||||
flake8
|
flake8
|
||||||
pytest<3.3
|
pytest
|
||||||
mock
|
mock
|
||||||
pytest-mock
|
pytest-mock
|
||||||
wheel
|
wheel
|
||||||
|
4
setup.py
4
setup.py
@ -26,8 +26,8 @@ if version < (2, 7):
|
|||||||
print('thefuck requires Python version 2.7 or later' +
|
print('thefuck requires Python version 2.7 or later' +
|
||||||
' ({}.{} detected).'.format(*version))
|
' ({}.{} detected).'.format(*version))
|
||||||
sys.exit(-1)
|
sys.exit(-1)
|
||||||
elif (3, 0) < version < (3, 3):
|
elif (3, 0) < version < (3, 4):
|
||||||
print('thefuck requires Python version 3.3 or later' +
|
print('thefuck requires Python version 3.4 or later' +
|
||||||
' ({}.{} detected).'.format(*version))
|
' ({}.{} detected).'.format(*version))
|
||||||
sys.exit(-1)
|
sys.exit(-1)
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user