From 9d2423663273d0fa2055acf8b40d45b27174c59f Mon Sep 17 00:00:00 2001 From: Chris Meyers Date: Wed, 2 Mar 2016 09:30:52 -0500 Subject: [PATCH] pin pyflakes to allow flake8 to succeed * flake8 monkeypatches pyflakes to add codes to linting results. It would seem that pyflakes 1.1.0 adds more checks but flake8 doesn't monkeypatch to expose them. I've submitted a PR to add error code 405 to be able to express that we ignore it in our setup.cfg https://gitlab.com/pycqa/flake8/merge_requests/56 --- requirements/requirements_dev.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/requirements/requirements_dev.txt b/requirements/requirements_dev.txt index 9131465b10..c6583f2ae8 100644 --- a/requirements/requirements_dev.txt +++ b/requirements/requirements_dev.txt @@ -3,6 +3,7 @@ django-debug-toolbar==1.4 unittest2 pep8 flake8 +pyflakes==1.0.0 # Pinned until PR merges https://gitlab.com/pycqa/flake8/merge_requests/56 pytest pytest-cov pytest-django