Skip to content

Commit

Permalink
use d2lbook==1.0.2 [skip CI]
Browse files Browse the repository at this point in the history
  • Loading branch information
AnirudhDagar committed Aug 17, 2023
1 parent 400d873 commit e8a552a
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 jax mxnet
RUN pip3 install d2lbook==1.0.2 torch torchvision tensorflow jax mxnet

CMD ["/bin/bash"]
2 changes: 1 addition & 1 deletion ci/docker/Dockerfile.d2l-jax
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 jax d2l
RUN pip3 install git+https://github.com/d2l-ai/d2l-book "tensorflow==2.12.0" "tensorflow-datasets==4.9.2"
RUN pip3 install d2lbook==1.0.2 tensorflow==2.12.0 tensorflow-datasets==4.9.2

# Python script to print framework versions
ADD print_versions.py .
Expand Down
2 changes: 1 addition & 1 deletion ci/docker/Dockerfile.d2l-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.2

# Python script to print framework versions
ADD print_versions.py .
Expand Down
2 changes: 1 addition & 1 deletion ci/docker/Dockerfile.d2l-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.20.0
RUN pip3 install d2lbook==1.0.2 tensorflow-probability==0.20.0

# Python script to print framework versions
ADD print_versions.py .
Expand Down
2 changes: 1 addition & 1 deletion ci/docker/Dockerfile.d2l-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 gym==0.21.0 gpytorch scipy syne-tune[gpsearchers]==0.3.2
RUN pip3 install d2lbook==1.0.2 gym==0.21.0 gpytorch scipy syne-tune[gpsearchers]==0.3.2

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

0 comments on commit e8a552a

Please sign in to comment.