Skip to content

Commit

Permalink
Use 'index-url' instead of 'find-links' to install domain libraries d…
Browse files Browse the repository at this point in the history
…uring CI testing (pytorch#1091)

Summary: Pull Request resolved: pytorch#1091

Test Plan: Imported from OSS

Reviewed By: ejguan

Differential Revision: D44111515

Pulled By: NivekT

fbshipit-source-id: 1d585f52908d65467eeaa6999b905317eb546c2c
  • Loading branch information
NivekT authored and facebook-github-bot committed Mar 16, 2023
1 parent 1f5a28b commit f2a1051
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/domain_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
- name: Install torch and torchvision from nightlies
run: |
pip install numpy networkx
pip install --pre torch torchvision -f https://download.pytorch.org/whl/nightly/cpu/torch_nightly.html
pip install --pre torch torchvision --index-url https://download.pytorch.org/whl/nightly/cpu
- name: Check out torchdata repository
uses: actions/checkout@v3
Expand Down Expand Up @@ -81,7 +81,7 @@ jobs:
- name: Install torch and torchtext from nightlies
run: |
pip install numpy networkx
pip install --pre torch torchtext -f https://download.pytorch.org/whl/nightly/cpu/torch_nightly.html
pip install --pre torch torchtext --index-url https://download.pytorch.org/whl/nightly/cpu
- name: Check out torchdata repository
uses: actions/checkout@v3
Expand Down Expand Up @@ -124,7 +124,7 @@ jobs:
- name: Install torch and torchaudio from nightlies
run: |
pip install networkx
pip install --pre torch torchaudio -f https://download.pytorch.org/whl/nightly/cpu/torch_nightly.html
pip install --pre torch torchaudio --index-url https://download.pytorch.org/whl/nightly/cpu
- name: Check out torchdata repository
uses: actions/checkout@v3
Expand Down

0 comments on commit f2a1051

Please sign in to comment.