Skip to content
This repository has been archived by the owner on Nov 3, 2023. It is now read-only.

Fix crowdsourcing CI check #4271

Merged
merged 1 commit into from
Dec 22, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,8 @@ commands:
python -m pip install --progress-bar off 'transformers==4.3.3'
python -m pip install --progress-bar off 'fairseq==0.10.0'
python -m pip install --progress-bar off 'faiss-gpu==1.7.0'
python -m pip uninstall dataclasses -y
# This pre-Python-3.7 package will break use of Python-3.7-style dataclasses
python -c 'import torch; print("Torch version:", torch.__version__)'
python -m torch.utils.collect_env

Expand All @@ -120,6 +122,8 @@ commands:
python -m pip install --progress-bar off 'transformers==4.3.3'
python -m pip install --progress-bar off 'fairseq==0.10.0'
python -m pip install --progress-bar off 'faiss-gpu==1.7.0'
python -m pip uninstall dataclasses -y
# This pre-Python-3.7 package will break use of Python-3.7-style dataclasses
python -c 'import torch; print("Torch version:", torch.__version__)'
python -m torch.utils.collect_env
python -c 'import torch; print("Torch version:", torch.__version__)'
Expand Down