8000 [MRG] Travis install flake8 3.5 from pip by lesteve · Pull Request #10085 · scikit-learn/scikit-learn · GitHub
[go: up one dir, main page]

Skip to content

[MRG] Travis install flake8 3.5 from pip #10085

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Nov 8, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions build_tools/travis/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -124,8 +124,7 @@ except ImportError:
fi

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