From 85ddb3c61f3a743c80342aaa6fa68eb13160b3b2 Mon Sep 17 00:00:00 2001 From: Sobolev Nikita Date: Sat, 11 Feb 2017 16:18:04 +0300 Subject: [PATCH] Updates .travis.yml to test python35 and python36 Also adds `sudo: false` flag, which speeds up the build. p.s. Could you please release a new version with python3 support on the pypi? --- .travis.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.travis.yml b/.travis.yml index ffb1f7b..f1729c8 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,5 +1,8 @@ language: python +sudo: false python: + - "3.6" + - "3.5" - "2.7" - "2.6" script: "python tests.py"