From 7f9abcf9108d2d3c2104a3a667ec2e3a011ddd3d Mon Sep 17 00:00:00 2001 From: Ben Darnell Date: Wed, 21 Oct 2015 22:01:23 -0400 Subject: [PATCH] Backport coverage py32 fix to branch4.0 --- .travis.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.travis.yml b/.travis.yml index f24db6f3d..437b52593 100644 --- a/.travis.yml +++ b/.travis.yml @@ -25,6 +25,9 @@ install: # On travis the extension should always be built - if [[ $TRAVIS_PYTHON_VERSION != 'pypy' ]]; then export TORNADO_EXTENSION=1; fi - python setup.py install + # Coverage 4.0 no longer supports py32. Install an older version before + # codecov tries to install the latest. + - if [[ $TRAVIS_PYTHON_VERSION == '3.2' ]]; then travis_retry pip install 'coverage<4.0'; fi - pip install coveralls script: -- 2.47.3