Skip to content

Commit d05e981

Browse files
authored
Merge pull request #63 from BlauGroup/sivonxay-patch-3
Update testing.yml
2 parents 2dd4792 + ebe330d commit d05e981

File tree

3 files changed

+12
-1
lines changed

3 files changed

+12
-1
lines changed

.github/workflows/testing.yml

+2
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,8 @@ jobs:
2727
run: |
2828
python -m pip install --upgrade pip
2929
pip install -e .[full,test]
30+
git clone https://github.com/rusty1s/pytorch_scatter.git
31+
pip install pytorch_scatter/
3032
pip install pytest-cov
3133
- name: Run tests
3234
run: |

README.md

+7
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,13 @@ or
2828
pip install .
2929
```
3030

31+
Finally, install torch-scatter as follows.
32+
```
33+
git clone https://github.com/rusty1s/pytorch_scatter.git
34+
pip install pytorch_scatter/
35+
```
36+
Note: This package is installed separately due to some installation issues. See: https://github.com/rusty1s/pytorch_scatter/issues/265 and https://github.com/rusty1s/pytorch_scatter/issues/424
37+
3138
## Running Simulations
3239
An example of local execution can be seen below.
3340

setup.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@
2424
"wandb",
2525
"gpuparallel",
2626
"torch-geometric<=2.3.1",
27-
"h5py"
27+
"h5py",
28+
"ray[tune]",
29+
"matplotlib <3.10",
2830
]
2931
)

0 commit comments

Comments
 (0)