Skip to content

Commit

Permalink
Use latest version of Pillow
Browse files Browse the repository at this point in the history
The base image includes Pillow 7.1.0 which has a known issue: python-pillow/Pillow#4518

This is causing the skimage test to fail.

BUG=160263325
  • Loading branch information
rosbo committed Jun 30, 2020
1 parent 668c0b1 commit 8cf1f25
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -346,7 +346,8 @@ RUN pip install bcolz && \
pip install pandocfilters && \
pip install pexpect && \
pip install pickleshare && \
pip install Pillow && \
# b/160263325: the version included in the m46 base image has a known issue.
pip install --upgrade Pillow && \
# Install openslide and its python binding
apt-get install -y openslide-tools && \
# b/152402322 install latest from pip once is in: https://github.com/openslide/openslide-python/pull/76
Expand Down

0 comments on commit 8cf1f25

Please sign in to comment.