Skip to content

Commit

Permalink
FIX: Torch install in HF integratin test workflow (#1031)
Browse files Browse the repository at this point in the history
For some reason, the existing install instruction started failing
recently. Try a different one akin to what is used for the unit tests.
  • Loading branch information
BenjaminBossan authored Nov 20, 2023
1 parent 5252b34 commit 82b388a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/test-hf-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ jobs:
- name: Install Requirements
run: |
python -m pip install -r requirements.txt
python -m pip install transformers tokenizers huggingface_hub torch
python -m pip install torch -f https://download.pytorch.org/whl/torch_stable.html
python -m pip install transformers tokenizers huggingface_hub
python -m pip install .
- name: run HF integration test
env:
Expand Down

0 comments on commit 82b388a

Please sign in to comment.