From ef6cffd85a616fd6d4f0882f5da58b547d405774 Mon Sep 17 00:00:00 2001 From: Marc Bonnici Date: Wed, 8 Jul 2020 10:13:28 +0100 Subject: [PATCH] travis: Limit the maximum version of isort The later versions of isort is not compatible with the version of pylint we use so ensure we use a compatible version in the travis tests. --- .travis.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.travis.yml b/.travis.yml index 4dc2e2b8..54b576e1 100644 --- a/.travis.yml +++ b/.travis.yml @@ -22,6 +22,7 @@ install: - pip install nose - pip install nose2 - pip install flake8 + - pip install isort==4.3.21 - pip install pylint==1.9.2 - git clone -v https://github.com/ARM-software/devlib.git /tmp/devlib && cd /tmp/devlib && python setup.py install - cd $TRAVIS_BUILD_DIR && python setup.py install