Skip to content

Commit 7fa337f

Browse files
Drop py26 and py33 from Travis and tox
Since it appears that Travis CI doesn't support them anymore
1 parent 7efd55d commit 7fa337f

File tree

2 files changed

+2
-7
lines changed

2 files changed

+2
-7
lines changed

Diff for: .travis.yml

+1-5
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,8 @@ cache: pip
44

55
matrix:
66
include:
7-
- python: 2.6
8-
env: TOXENV=py26
97
- python: 2.7
108
env: TOXENV=py27
11-
- python: 3.3
12-
env: TOXENV=py33
139
- python: 3.4
1410
env: TOXENV=py34
1511
- python: 3.5
@@ -34,7 +30,7 @@ before_script:
3430
- if [[ $TRAVIS_PYTHON_VERSION == *.7 ]]; then
3531
pip install flake8;
3632
flake8 . --count --exit-zero --select=E901,E999,F821,F822,F823 --show-source --statistics;
37-
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics;
33+
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics;
3834
fi
3935

4036
script:

Diff for: tox.ini

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
[tox]
2-
envlist = py26,py27,py33,py34,py35,py36,py37
2+
envlist = py27,py34,py35,py36,py37
33

44
[testenv]
55
deps =
66
pytest
77
unittest2
8-
py26: importlib
98
commands = pytest {posargs}

0 commit comments

Comments
 (0)