From 443c370f9dc470e6e33ec335d61dd18346238d2e Mon Sep 17 00:00:00 2001 From: Kevin Carter Date: Mon, 6 Apr 2015 22:35:07 -0500 Subject: [PATCH] updated dev requirements to allow for linting python The python files within the stack are not able to pass lint checks using the same standard which OpenStack requires. This change adds the requirements to the dev-requirements.txt file which will enable hacking/flake8 checks within our stack. These requirements mirror what is presently found within upstream OpenStack global requirements. Partial-Bug: 1440462 Change-Id: I61d5e8803e987ae5f4ec867db5446fb55a0bf898 --- dev-requirements.txt | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/dev-requirements.txt b/dev-requirements.txt index 2618b7bab2..8ff5f48647 100644 --- a/dev-requirements.txt +++ b/dev-requirements.txt @@ -1 +1,6 @@ ansible-lint>=2.0.3 +flake8==2.2.4 +hacking>=0.10.0,<0.11 +pep8==1.5.7 +pyflakes==0.8.1 +mccabe==0.2.1 # capped for flake8