diff options
author | IWASE Yusuke <iwase.yusuke0@gmail.com> | 2016-05-13 14:15:31 +0900 |
---|---|---|
committer | FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> | 2016-05-13 22:33:17 +0900 |
commit | dc6e2b869168aefb99abb2019f5bd460e5f5ea5f (patch) | |
tree | 270b8b4711fefc0dbcb1547cb350bb54f25598ec /tox.ini | |
parent | ead9ce79a53727fd46c9c6c58cb0017f784ea672 (diff) |
tox: Add Python 3.5
>From Ubuntu 16.04 LTS, the default version of Python 3 has been
upgraded to 3.5.1.
e.g.)
$ python3 --version
Python 3.5.1+
This patch enables to run unit tests on Python 3.5 environment.
Signed-off-by: IWASE Yusuke <iwase.yusuke0@gmail.com>
Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
Diffstat (limited to 'tox.ini')
-rw-r--r-- | tox.ini | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1,5 +1,5 @@ [tox] -envlist = py27,py34,pypy26,pep8 +envlist = py27,py34,py35,pypy26,pep8 [testenv] deps = -U |