From 08ec1b2c703648691468763728174f8fdc4e2d06 Mon Sep 17 00:00:00 2001 From: Berker Peksag Date: Thu, 15 May 2014 01:19:49 +0300 Subject: [PATCH] Also, enable Python 3.4 on Travis CI. (The "--use-mirrors" option was deprecated, so I removed it.) --- .travis.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index c602bb2f..2dea0409 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,9 +3,10 @@ python: - "2.6" - "2.7" - "3.3" + - "3.4" - "pypy" install: - - "pip install -r requirements_dev.txt --use-mirrors" + - "pip install -r requirements_dev.txt" - "python setup.py install" script: py.test -x tests/ branches: