Skip to content

Commit

Permalink
install torch_scatter from conda instead of pypi
Browse files Browse the repository at this point in the history
maybe those binaries actually work?
  • Loading branch information
JacksonBurns committed Mar 8, 2024
1 parent 45e0374 commit 535fca5
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,12 +77,15 @@ jobs:
channel_priority: flexible
create-args: |
python=${{ matrix.python-version }}
- name: Install dependencies
- name: Install Dependencies
shell: bash -l {0}
run: |
python -m pip install flake8 pytest parameterized nbmake
python -m pip install torch==2.2.0
python -m pip install torch-scatter -f https://data.pyg.org/whl/torch-2.2.0+cpu.html
# fails to build Wheel on MacOS
# python -m pip install torch-scatter -f https://data.pyg.org/whl/torch-2.2.0+cpu.html
# use the conda binaries instead
mamba install pytorch-scatter -c pyg
python -m pip install -e ".[dev,docs,test]"
- name: Test with pytest
shell: bash -l {0}
Expand Down

0 comments on commit 535fca5

Please sign in to comment.