From 617cbdf8cde7106407b56babd885cad15843118e Mon Sep 17 00:00:00 2001 From: Vincent Roseberry Date: Mon, 16 Nov 2020 18:22:52 +0000 Subject: [PATCH] Pin fastcore. We were pinning the fastai version but not the underlying fastcore package. The newest version of fastcore wasn't compatible with our pinned version of fastai. http://b/173417664 --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index cbc5290f..f9173193 100644 --- a/Dockerfile +++ b/Dockerfile @@ -376,6 +376,8 @@ RUN pip install bcolz && \ pip install feather-format && \ # b/172491515: Unpin after upgrading to torch 1.7 pip install fastai==2.0.19 && \ + # b/172491515: Remove the next line after removing pin for fastai + pip install fastcore==1.3.2 && \ pip install allennlp && \ python -m spacy download en && python -m spacy download en_core_web_lg && \ apt-get install -y ffmpeg && \