Skip to content

Commit

Permalink
HADOOP-16949. pylint fails in the build environment (#1926)
Browse files Browse the repository at this point in the history
(cherry picked from commit e6455cc)
  • Loading branch information
aajisaka committed Apr 4, 2020
1 parent 0a90df7 commit f537a51
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion dev-support/docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,9 @@ RUN apt-get -q update \
# Install pylint at fixed version (2.0.0 removed python2 support)
# https://github.com/PyCQA/pylint/issues/2294
####
RUN pip2 install pylint==1.9.2
RUN pip2 install \
configparser==4.0.2 \
pylint==1.9.2

####
# Install dateutil.parser
Expand Down
4 changes: 3 additions & 1 deletion dev-support/docker/Dockerfile_aarch64
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,9 @@ RUN apt-get -q update \
# Install pylint at fixed version (2.0.0 removed python2 support)
# https://github.com/PyCQA/pylint/issues/2294
####
RUN pip2 install pylint==1.9.2
RUN pip2 install \
configparser==4.0.2 \
pylint==1.9.2

####
# Install dateutil.parser
Expand Down

0 comments on commit f537a51

Please sign in to comment.