From 0e4d9a984f2b5b277056a736638c97d7d433913c Mon Sep 17 00:00:00 2001 From: Jake Howard Date: Wed, 28 Mar 2018 20:14:50 +0100 Subject: [PATCH] Install flake8 with apt --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 0589bd3..3ba5ea7 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -8,7 +8,7 @@ jobs: - checkout - run: name: Install Dependencies - command: sudo pip install flake8 + command: apt-get install -y python-flake8 - run: name: Lint command: flake8 build.py --ignore=E128,E501