Skip to content

Commit

Permalink
Fix torch install in HF integratin test workflow
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 committed Nov 17, 2023
1 parent 5252b34 commit 7e1a8aa
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 7e1a8aa

Please sign in to comment.