Skip to content

Commit d6d8734

Browse files
danchrdnozay
authored andcommitted
travis & tox: drop python 3.3 with broken tests; add 3.5+ & pypy3
1 parent 5449f35 commit d6d8734

File tree

2 files changed

+12
-4
lines changed

2 files changed

+12
-4
lines changed

.travis.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,18 @@ matrix:
1212
env: TOXENV=py27-djangocurr
1313
- python: "2.7"
1414
env: TOXENV=quality
15-
- python: "3.3"
16-
env: TOXENV=py33
1715
- python: "3.4"
1816
env: TOXENV=py34
17+
- python: "3.5"
18+
env: TOXENV=py35
19+
- python: "3.6"
20+
env: TOXENV=py36
21+
- python: "3.7-dev"
22+
env: TOXENV=py37
1923
- python: "pypy"
2024
env: TOXENV=pypy
25+
- python: "pypy3"
26+
env: TOXENV=pypy3
2127

2228
install:
2329
- pip install tox codecov coveralls

tox.ini

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
[tox]
2-
envlist = begin,py{27,py,33,34},py27-django{lts,curr},end,quality
2+
envlist = begin,py{27,py,py3,34,35,36,37},py27-django{lts,curr},end,quality
33

44
[tox:travis]
55
2.7 = begin,py27,py27-django{lts,curr},end,quality
6-
3.3 = py33
76
3.4 = py34
7+
3.5 = py35
8+
3.6 = py36
9+
3.7 = py37
810

911
[testenv]
1012
deps =

0 commit comments

Comments
 (0)