From d70e4938f07ac8937049edbdf7e7ba26d89b54c2 Mon Sep 17 00:00:00 2001 From: Mihir Singh Date: Tue, 11 Oct 2016 18:28:25 -0500 Subject: [PATCH] Added Python 3.0 - 3.5 to the Travis CI configuration --- .travis.yml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index ffa8134..fe443f7 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,8 +1,14 @@ language: python python: - - "2.6" - - "2.7" + - 2.6 + - 2.7 + - 3.0 + - 3.1 + - 3.2 + - 3.3 + - 3.4 + - 3.5 install: - python setup.py install