Skip to content

Commit

Permalink
Fix doc build (#1365)
Browse files Browse the repository at this point in the history
Do not assume that default python version conda install is 3.8
  • Loading branch information
malfet committed Jul 27, 2021
1 parent a0a015a commit c57b1fb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -544,7 +544,7 @@ jobs:
name: install binaries
command: |
set -x
conda install make
conda install -y make python=${PYTHON_VERSION}
pip install $(ls ~/workspace/torchtext*.whl) --pre -f "https://download.pytorch.org/whl/${UPLOAD_CHANNEL}/cpu/torch_${UPLOAD_CHANNEL}.html"
- run:
name: Build docs
Expand Down
2 changes: 1 addition & 1 deletion .circleci/config.yml.in
Original file line number Diff line number Diff line change
Expand Up @@ -544,7 +544,7 @@ jobs:
name: install binaries
command: |
set -x
conda install make
conda install -y make python=${PYTHON_VERSION}
pip install $(ls ~/workspace/torchtext*.whl) --pre -f "https://download.pytorch.org/whl/${UPLOAD_CHANNEL}/cpu/torch_${UPLOAD_CHANNEL}.html"
- run:
name: Build docs
Expand Down

0 comments on commit c57b1fb

Please sign in to comment.