From a615cf670e63af8f70987b86d9dffb4c4cb15485 Mon Sep 17 00:00:00 2001 From: pgjones Date: Sun, 2 Dec 2018 16:26:09 +0000 Subject: [PATCH] Pin the pylint version during linting This is required till prospector is fixed, See https://github.com/PyCQA/prospector/pull/309. --- tox.ini | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 76390be..cd8143a 100644 --- a/tox.ini +++ b/tox.ini @@ -34,7 +34,10 @@ commands = [testenv:lint] basepython = python3.6 -deps = prospector==1.1.4 +# pylint==2.1.1 required due to prospector bug, see https://github.com/PyCQA/prospector/pull/309 +deps = + prospector==1.1.4 + pylint==2.1.1 commands = prospector [testenv:docs]