Use dash==2.8.1 for now for daily CI (#22227)

Use dash 2.8.1 for now

Co-authored-by: ydshieh <ydshieh@users.noreply.github.com>
This commit is contained in:
Yih-Dar
2023-03-17 13:27:14 +01:00
committed by GitHub
parent af1c864cdc
commit 53218671d9
3 changed files with 9 additions and 0 deletions

View File

@@ -29,6 +29,9 @@ RUN python3 -m pip uninstall -y tensorflow flax
RUN python3 -m pip install --no-cache-dir git+https://github.com/facebookresearch/detectron2.git pytesseract
RUN python3 -m pip install -U "itsdangerous<2.1.0"
# dash 2.9.0 has some issue.
RUN python3 -m pip install -U dash==2.8.1
# When installing in editable mode, `transformers` is not recognized as a package.
# this line must be added in order for python to be aware of transformers.
RUN cd transformers && python3 setup.py develop