From eee39256061a0f1e1eea70f59aefb7a1347c932c Mon Sep 17 00:00:00 2001 From: Atsushi Kanaya Date: Sun, 5 Jan 2014 23:22:39 +0900 Subject: [PATCH] #61 added python 3.3 to .travis.yml target version. --- .travis.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 78c391ed..985ce7ae 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,8 +1,9 @@ language: python python: - "2.7" + - "3.3" install: - - pip install mock iso8601 backports.ssl-match-hostname --use-mirrors + - pip install six mock iso8601 backports.ssl-match-hostname --use-mirrors - python setup.py install script: - python -m unittest discover -s tests