Skip to content

Commit 6735943

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

File tree

2 files changed

+2
-10
lines changed

2 files changed

+2
-10
lines changed

.travis.yml

+1-8
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,8 @@ cache: pip
55

66
matrix:
77
include:
8-
- python: 2.6
9-
env: TOXENV=py26
10-
dist: trusty
118
- python: 2.7
129
env: TOXENV=py27
13-
- python: 3.3
14-
env: TOXENV=py33
15-
dist: trusty
16-
sudo: false
1710
- python: 3.4
1811
env: TOXENV=py34
1912
- python: 3.5
@@ -38,7 +31,7 @@ before_script:
3831
- if [[ $TRAVIS_PYTHON_VERSION == *.7 ]]; then
3932
pip install flake8;
4033
flake8 . --count --exit-zero --select=E901,E999,F821,F822,F823 --show-source --statistics;
41-
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics;
34+
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics;
4235
fi
4336

4437
script:

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)