Skip to content

Commit

Permalink
Use d2lbook==1.0.0 for all containers
Browse files Browse the repository at this point in the history
  • Loading branch information
AnirudhDagar committed Aug 17, 2023
1 parent ca095bd commit 0cef09e
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion ci/docker/Dockerfile.d2l-builder
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,6 @@ ENV PATH="/home/ci/.local/bin:$PATH"

# Install d2lbook using pip
# Install all libraries (cpu) to make sure API reference works for PDF builds
RUN pip3 install git+https://github.com/d2l-ai/d2l-book torch torchvision tensorflow mxnet
RUN pip3 install d2lbook==1.0.0 torch torchvision tensorflow mxnet

CMD ["/bin/bash"]
2 changes: 1 addition & 1 deletion ci/docker/Dockerfile.d2l-zh-mxnet
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ USER ci
ENV PATH="/home/ci/.local/bin:$PATH"

# Install d2lbook using pip
RUN pip3 install git+https://github.com/d2l-ai/d2l-book
RUN pip3 install d2lbook==1.0.0

# Python script to print framework versions
ADD print_versions.py .
Expand Down
2 changes: 1 addition & 1 deletion ci/docker/Dockerfile.d2l-zh-paddle
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ USER ci
ENV PATH="/home/ci/.local/bin:$PATH"

# Install d2lbook using pip + paddlepaddle dependencies
RUN pip3 install git+https://github.com/d2l-ai/d2l-book "opencv-python==4.6.0.66"
RUN pip3 install d2lbook==1.0.0 "opencv-python==4.6.0.66"

# Python script to print framework versions
ADD print_versions.py .
Expand Down
2 changes: 1 addition & 1 deletion ci/docker/Dockerfile.d2l-zh-tf
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ USER ci
ENV PATH="/home/ci/.local/bin:$PATH"

# Install d2lbook using pip + dependencies for tensorflow d2l
RUN pip3 install git+https://github.com/d2l-ai/d2l-book tensorflow-probability==0.17.0
RUN pip3 install d2lbook==1.0.0 tensorflow-probability==0.17.0

# Python script to print framework versions
ADD print_versions.py .
Expand Down
2 changes: 1 addition & 1 deletion ci/docker/Dockerfile.d2l-zh-torch
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ USER ci
ENV PATH="/home/ci/.local/bin:$PATH"

# Install d2lbook using pip + dependencies for torch d2l
RUN pip3 install git+https://github.com/d2l-ai/d2l-book
RUN pip3 install d2lbook==1.0.0

# Python script to print framework versions
ADD print_versions.py .
Expand Down

0 comments on commit 0cef09e

Please sign in to comment.