Skip to content

Commit

Permalink
Enable pyg-lib installation for macOS Apple Silicon (#9080)
Browse files Browse the repository at this point in the history
  • Loading branch information
rusty1s committed Mar 21, 2024
1 parent 13d8198 commit 203876c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/actions/setup/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@ runs:
python -c "import torch; print('CUDA:', torch.version.cuda)"
shell: bash

- name: Install pyg-lib # pyg-lib is currently only available on Linux.
if: ${{ inputs.torch-version != 'nightly' && runner.os == 'Linux' }}
- name: Install pyg-lib # pyg-lib is currently not available on Windows.
if: ${{ inputs.torch-version != 'nightly' && runner.os != 'Windows' }}
run: |
pip uninstall -y pyg-lib
pip install --no-index pyg-lib -f https://data.pyg.org/whl/nightly/torch-${{ inputs.torch-version }}+${{ inputs.cuda-version }}.html
Expand Down

0 comments on commit 203876c

Please sign in to comment.