From b869d7c6ecef9956980e14d7a9de97ce4219ea65 Mon Sep 17 00:00:00 2001 From: Hernan Grecco Date: Mon, 12 Oct 2015 19:53:59 -0300 Subject: [PATCH] Use Coverage==3.7.1 for Python 3.2 --- .travis.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index f4ec2e0..f17e247 100644 --- a/.travis.yml +++ b/.travis.yml @@ -43,7 +43,8 @@ install: - if [ $TRAVIS_PYTHON_VERSION == '2.6' ]; then pip install unittest2; fi - if [ $UNCERTAINTIES == 'Y' ]; then pip install uncertainties; fi - if [ $NUMPY_VERSION != '0' ]; then conda install -c mwcraig --yes numpy==$NUMPY_VERSION; fi - - pip install coverage coveralls + - if [ $TRAVIS_PYTHON_VERSION == '3.2' ]; then pip install coverage==3.7.1; else pip install coverage; fi + - pip install coveralls script: - if [ $TRAVIS_PYTHON_VERSION == '2.6' ]; then coverage run -p --source=pint --omit="*test*","*compat*" setup.py test; fi