Skip to content

Commit 0729ea7

Browse files
authored
Merge pull request #9980 from jacquesqiao/fix-pip-version
specify version for pip
2 parents a79676e + 6708546 commit 0729ea7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Dockerfile.android

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ RUN git config --global credential.helper store
2727
# Fix locales to en_US.UTF-8
2828
RUN localedef -i en_US -f UTF-8 en_US.UTF-8
2929

30-
RUN pip install --upgrade pip && \
30+
RUN pip install --upgrade pip==9.0.3 && \
3131
pip install -U 'protobuf==3.1.0' && \
3232
pip install -U wheel sphinx && \
3333
pip install pre-commit

tools/manylinux1/Dockerfile.android

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ RUN git config --global credential.helper store
3737
# Fix locales to en_US.UTF-8
3838
RUN localedef -i en_US -f UTF-8 en_US.UTF-8
3939

40-
RUN pip install --upgrade pip && \
40+
RUN pip install --upgrade pip==9.0.3 && \
4141
pip install -U 'protobuf==3.1.0' && \
4242
pip install -U wheel sphinx && \
4343
pip install pre-commit

0 commit comments

Comments
 (0)