From a9b78f7e88fb29ff7d655517e75aaf856a052050 Mon Sep 17 00:00:00 2001 From: Josh Watts Date: Wed, 19 Nov 2014 18:38:39 -0500 Subject: [PATCH] added python 3 to Travis CI --- travis.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/travis.yml b/travis.yml index 8272d737..11dd3675 100644 --- a/travis.yml +++ b/travis.yml @@ -1,6 +1,9 @@ language: python python: + - "2.6" - "2.7" + - "3.3" + - "3.4" # command to install dependencies install: "pip install -r requirements.txt" # command to run tests