Skip to content

Commit ad9ca6b

Browse files
authored
Add python3.7 (#115)
* Add python3.7-dev * 3.7 is supported * Add xenial
1 parent 2192bd7 commit ad9ca6b

File tree

2 files changed

+10
-7
lines changed

2 files changed

+10
-7
lines changed

.travis.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,13 @@
1+
dist: xenial
2+
13
language: python
24

35
python:
46
- "2.7"
57
- "3.4"
68
- "3.5"
79
- "3.6"
10+
- "3.7"
811

912
install: pip install tox-travis
1013

tox.ini

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py27, py34, py35, py36, py36-flake8-src, py36-flake8-other
2+
envlist = py27, py34, py35, py36, py37, py37-flake8-src, py37-flake8-other
33

44
[testenv]
55
deps =
@@ -8,21 +8,21 @@ deps =
88
-r{toxinidir}/requirements-test.txt
99
commands = py.test -v tests/
1010

11-
[testenv:py36]
12-
basepython = python3.6
11+
[testenv:py37]
12+
basepython = python3.7
1313
deps = {[testenv]deps}
1414
commands = py.test -v --cov=linebot tests/
1515

16-
[testenv:py36-flake8-src]
17-
basepython = python3.6
16+
[testenv:py37-flake8-src]
17+
basepython = python3.7
1818
deps =
1919
six
2020
flake8
2121
flake8-docstrings
2222
commands = flake8 linebot/
2323

24-
[testenv:py36-flake8-other]
25-
basepython = python3.6
24+
[testenv:py37-flake8-other]
25+
basepython = python3.7
2626
deps =
2727
six
2828
flake8

0 commit comments

Comments
 (0)