From ca0826e43b3ee4418be5593c8d4c5fa661843bc4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gabriel=20Falc=C3=A3o?= Date: Mon, 14 Dec 2015 10:24:20 -0200 Subject: [PATCH] fixing travis --- .travis.yml | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index 938d2ea..a5a5a64 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,12 +1,16 @@ language: python python: - - "2.6" - "2.7" - - "3.3" + - "3.5" + +matrix: + allow_failures: + - python: "3.5" + # command to install dependencies install: - - pip install curdling - - curd install -r requirements.txt + - pip install -U pip + - pip install -r requirements.txt # command to run tests script: make test