You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tvm.apache.org by lu...@apache.org on 2022/06/23 12:26:08 UTC

[tvm] branch main updated: Revert "upgrade ci lint docker file (#11734)" (#11787)

This is an automated email from the ASF dual-hosted git repository.

lukhut pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/tvm.git


The following commit(s) were added to refs/heads/main by this push:
     new 7ae919292d Revert "upgrade ci lint docker file (#11734)" (#11787)
7ae919292d is described below

commit 7ae919292d42f5858d4db04533bca67b4b5bb44f
Author: Leandro Nunes <le...@arm.com>
AuthorDate: Thu Jun 23 13:26:01 2022 +0100

    Revert "upgrade ci lint docker file (#11734)" (#11787)
    
    This reverts commit 7bfbc74c65684d1e25e235335da41c94372a561a, as it
    generates near 500 code violations when PyLint was updated from 2.4.4 to
    2.9.3.
    
    Issue #11785 for details.
---
 docker/Dockerfile.ci_lint | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docker/Dockerfile.ci_lint b/docker/Dockerfile.ci_lint
index 2c9d72764a..437ea71bd4 100644
--- a/docker/Dockerfile.ci_lint
+++ b/docker/Dockerfile.ci_lint
@@ -34,7 +34,7 @@ RUN pip config set global.no-cache-dir false
 
 RUN apt-get update && apt-install-and-clear -y doxygen graphviz curl shellcheck
 
-RUN pip3 install cpplint pylint==2.9.3 mypy==0.902 black==22.3.0 flake8==3.9.2 blocklint==0.2.3 jinja2==3.0.3
+RUN pip3 install cpplint pylint==2.4.4 mypy==0.902 black==22.3.0 flake8==3.9.2 blocklint==0.2.3 jinja2==3.0.3
 
 # Rust env (build early; takes a while)
 COPY install/ubuntu_install_rust.sh /install/ubuntu_install_rust.sh