Skip to content

Commit 5321867

Browse files
authored
Use dash==2.8.1 for now for daily CI (#22227)
Use dash 2.8.1 for now Co-authored-by: ydshieh <[email protected]>
1 parent af1c864 commit 5321867

File tree

3 files changed

+9
-0
lines changed

3 files changed

+9
-0
lines changed

docker/transformers-all-latest-gpu/Dockerfile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,9 @@ RUN python3 -m pip install --no-cache-dir decord av==9.2.0
5959
## For `dinat` model
6060
#RUN python3 -m pip install --no-cache-dir natten -f https://shi-labs.com/natten/wheels/$CUDA/
6161

62+
# dash 2.9.0 has some issue.
63+
RUN python3 -m pip install -U dash==2.8.1
64+
6265
# When installing in editable mode, `transformers` is not recognized as a package.
6366
# this line must be added in order for python to be aware of transformers.
6467
RUN cd transformers && python3 setup.py develop

docker/transformers-pytorch-deepspeed-latest-gpu/Dockerfile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,9 @@ RUN python3 -m pip uninstall -y deepspeed
4040
# TODO: Find out why test fail.
4141
RUN DS_BUILD_CPU_ADAM=1 DS_BUILD_FUSED_ADAM=1 DS_BUILD_AIO=1 DS_BUILD_UTILS=1 python3 -m pip install deepspeed --global-option="build_ext" --global-option="-j8" --no-cache -v --disable-pip-version-check 2>&1
4242

43+
# dash 2.9.0 has some issue.
44+
RUN python3 -m pip install -U dash==2.8.1
45+
4346
# When installing in editable mode, `transformers` is not recognized as a package.
4447
# this line must be added in order for python to be aware of transformers.
4548
RUN cd transformers && python3 setup.py develop

docker/transformers-pytorch-gpu/Dockerfile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,9 @@ RUN python3 -m pip uninstall -y tensorflow flax
2929
RUN python3 -m pip install --no-cache-dir git+https://github.com/facebookresearch/detectron2.git pytesseract
3030
RUN python3 -m pip install -U "itsdangerous<2.1.0"
3131

32+
# dash 2.9.0 has some issue.
33+
RUN python3 -m pip install -U dash==2.8.1
34+
3235
# When installing in editable mode, `transformers` is not recognized as a package.
3336
# this line must be added in order for python to be aware of transformers.
3437
RUN cd transformers && python3 setup.py develop

0 commit comments

Comments
 (0)