From 1e16ebd190d306bcb4b73072dc7b58ec7af00da1 Mon Sep 17 00:00:00 2001 From: Marcus Shawcroft Date: Mon, 4 Mar 2019 15:43:59 +0000 Subject: [PATCH] [DOCKER] Pin pylint==1.9.4 --- docker/Dockerfile.ci_lint | 2 +- docker/install/ubuntu_install_python_package.sh | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docker/Dockerfile.ci_lint b/docker/Dockerfile.ci_lint index 461a5f1f1135..0d7b4a410033 100644 --- a/docker/Dockerfile.ci_lint +++ b/docker/Dockerfile.ci_lint @@ -6,4 +6,4 @@ RUN apt-get update && apt-get install -y sudo wget COPY install/ubuntu_install_python.sh /install/ubuntu_install_python.sh RUN bash /install/ubuntu_install_python.sh RUN apt-get install -y doxygen graphviz -RUN pip3 install cpplint pylint==2.2.2 mypy +RUN pip3 install cpplint pylint==1.9.4 mypy diff --git a/docker/install/ubuntu_install_python_package.sh b/docker/install/ubuntu_install_python_package.sh index c15ff75f260e..200fe6e47781 100755 --- a/docker/install/ubuntu_install_python_package.sh +++ b/docker/install/ubuntu_install_python_package.sh @@ -5,5 +5,5 @@ set -u set -o pipefail # install libraries for python package on ubuntu -pip2 install nose pylint==2.2.2 six numpy nose-timer cython decorator scipy tornado typing antlr4-python2-runtime attrs -pip3 install nose pylint==2.2.2 six numpy nose-timer cython decorator scipy tornado typed_ast pytest mypy orderedset antlr4-python3-runtime attrs +pip2 install nose pylint==1.9.4 six numpy nose-timer cython decorator scipy tornado typing antlr4-python2-runtime attrs +pip3 install nose pylint==1.9.4 six numpy nose-timer cython decorator scipy tornado typed_ast pytest mypy orderedset antlr4-python3-runtime attrs