From 61dff00a17f58aa991b7495c333969b4982ae451 Mon Sep 17 00:00:00 2001 From: Cosimo Lupo Date: Wed, 2 Nov 2016 17:56:39 +0000 Subject: [PATCH] travis: test on both py27 and py35; drop py34 as it's redundant install deps from requirements.txt no need to install cu2qu to run `setup.py test`. --- .travis.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index 2d4cce0ba..22df13273 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,15 +1,14 @@ sudo: false language: python python: - - "3.4" + - "2.7" + - "3.5" branches: only: - master install: - - python setup.py install - - pip install git+https://github.com/behdad/fonttools - - pip install git+https://github.com/unified-font-object/ufoLib + - pip install -r requirements.txt script: - python setup.py test