8000 TRAVIS install flake8 3.5 from pip (#10085) · scikit-learn/scikit-learn@3fa7a06 · GitHub
[go: up one dir, main page]

Skip to content

Commit 3fa7a06

Browse files
authored
TRAVIS install flake8 3.5 from pip (#10085)
1 parent 555bf6b commit 3fa7a06

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

build_tools/travis/install.sh

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -124,8 +124,7 @@ except ImportError:
124124
fi
125125

126126
if [[ "$RUN_FLAKE8" == "true" ]]; then
127-
# flake8 version is temporarily set to 2.5.1 because the next
128-
# version available on conda (3.3.0) has a bug that checks non
129-
# python files and cause non meaningful flake8 errors
130-
conda install --yes flake8=2.5.1
127+
# flake8 3.5 only available from pip at the time of writing (2017-11-08)
128+
# bug fixed in flake8 3.5 is https://gitlab.com/pycqa/flake8/issues/362
129+
pip install flake8
131130
fi

0 commit comments

Comments
 (0)
0