Skip to content

Commit e6455cc

Browse files
authored
HADOOP-16949. pylint fails in the build environment (#1926)
1 parent 8f8be6b commit e6455cc

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

dev-support/docker/Dockerfile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,9 @@ RUN apt-get -q update \
166166
# Install pylint at fixed version (2.0.0 removed python2 support)
167167
# https://github.com/PyCQA/pylint/issues/2294
168168
####
169-
RUN pip2 install pylint==1.9.2
169+
RUN pip2 install \
170+
configparser==4.0.2 \
171+
pylint==1.9.2
170172

171173
####
172174
# Install dateutil.parser

dev-support/docker/Dockerfile_aarch64

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,9 @@ RUN apt-get -q update \
174174
# Install pylint at fixed version (2.0.0 removed python2 support)
175175
# https://github.com/PyCQA/pylint/issues/2294
176176
####
177-
RUN pip2 install pylint==1.9.2
177+
RUN pip2 install \
178+
configparser==4.0.2 \
179+
pylint==1.9.2
178180

179181
####
180182
# Install dateutil.parser

0 commit comments

Comments
 (0)