Skip to content

Commit 69f61f0

Browse files
author
Tasuku OKUDA
committed
Support Python 3.6
Currently Python latest version is 3.6.1, so we should support this version. Fortunately there is no problem to run all tests on python 3.6 😎
1 parent 928b87a commit 69f61f0

File tree

3 files changed

+9
-7
lines changed

3 files changed

+9
-7
lines changed

README.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -623,6 +623,7 @@ Test by using tox. We test against the following versions.
623623
- 3.3
624624
- 3.4
625625
- 3.5
626+
- 3.6
626627

627628
To run all tests and to run ``flake8`` against all versions, use:
628629

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,7 @@ def run_tests(self):
8383
"Programming Language :: Python :: 3.3",
8484
"Programming Language :: Python :: 3.4",
8585
"Programming Language :: Python :: 3.5",
86+
"Programming Language :: Python :: 3.6",
8687
"Topic :: Software Development"
8788
]
8889
)

tox.ini

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

44
[testenv]
55
deps =
66
-r{toxinidir}/requirements.txt
77
-r{toxinidir}/requirements-test.txt
88
commands = py.test -v tests/
99

10-
[testenv:py35]
11-
basepython = python3.5
10+
[testenv:py36]
11+
basepython = python3.6
1212
deps = {[testenv]deps}
1313
commands = py.test -v --cov=linebot tests/
1414

15-
[testenv:py35-flake8-src]
16-
basepython = python3.5
15+
[testenv:py36-flake8-src]
16+
basepython = python3.6
1717
deps =
1818
flake8
1919
flake8-docstrings
2020
pydocstyle==1.1.1
2121
commands = flake8 linebot/
2222

23-
[testenv:py35-flake8-other]
24-
basepython = python3.5
23+
[testenv:py36-flake8-other]
24+
basepython = python3.6
2525
deps =
2626
flake8
2727
commands = flake8 tests/ examples/

0 commit comments

Comments
 (0)