Skip to content
This repository was archived by the owner on Mar 18, 2022. It is now read-only.

Commit 8a27da7

Browse files
committed
More python3 versions
1 parent 64a5fea commit 8a27da7

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

.travis.yml

+2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
language: python
22
python:
33
- 2.7
4+
- 3.4
45
- 3.5
6+
- 3.6
57
sudo: false
68
install:
79
- pip install tox-travis

tox.ini

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,15 @@
11
[tox]
22
envlist =
3-
{py27,py35}-unittest,
4-
{py27,py35}-integration
3+
py{27,34,35,36}-unittest,
4+
py{27,34,35,36}-integration
55
lint
66
# docs
77

88
[tox:travis]
99
2.7 = py27-unittest, py27-integration, lint
10+
3.4 = py34-unittest, py34-integration
1011
3.5 = py35-unittest, py35-integration
12+
3.6 = py36-unittest, py36-integration
1113

1214
[testenv]
1315
deps =

0 commit comments

Comments
 (0)