From 0d433b220c1bb3db96e567d1ff3e14bfdace1c2c Mon Sep 17 00:00:00 2001 From: Wang Qing Date: Fri, 19 Apr 2019 12:48:55 +0800 Subject: [PATCH] [hotfix] Hot fix for CI linting error --- ci/travis/install-dependencies.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ci/travis/install-dependencies.sh b/ci/travis/install-dependencies.sh index d0f9c6988..4d9b5393a 100755 --- a/ci/travis/install-dependencies.sh +++ b/ci/travis/install-dependencies.sh @@ -57,7 +57,8 @@ elif [[ "$LINT" == "1" ]]; then bash miniconda.sh -b -p $HOME/miniconda export PATH="$HOME/miniconda/bin:$PATH" # Install Python linting tools. - pip install -q flake8 flake8-comprehensions flake8-quotes + pip install -q flake8 flake8-comprehensions + pip install flake8-quotes==1.0.0 elif [[ "$LINUX_WHEELS" == "1" ]]; then sudo apt-get install docker sudo usermod -a -G docker travis