Skip to content

Commit d9017b3

Browse files
authored
Merge pull request #1 from thunderock/setup_geometric
Setup geometric
2 parents 5c357af + 3d78966 commit d9017b3

File tree

3 files changed

+136
-5
lines changed

3 files changed

+136
-5
lines changed

Makefile

+1
Original file line numberDiff line numberDiff line change
@@ -28,5 +28,6 @@ setup_all: clean
2828
.PHONY: format
2929
format:
3030
@echo "formatting..."
31+
@poetry install --only lint
3132
@poetry run black .
3233
@poetry run pre-commit run --all-files

poetry.lock

+129-5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

+6
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,12 @@ pytorch-lightning = "^2.1.3"
3232
traittypes = "^0.2.1"
3333
traitlets = "^5.9.0"
3434
datasets = "^2.17.1"
35+
torch-cluster = {url = "https://data.pyg.org/whl/torch-2.1.0%2Bcu121/torch_cluster-1.6.2%2Bpt21cu121-cp310-cp310-linux_x86_64.whl"}
36+
pyg-lib = {url = "https://data.pyg.org/whl/torch-2.1.0%2Bcu121/pyg_lib-0.4.0%2Bpt21cu121-cp310-cp310-linux_x86_64.whl"}
37+
torch-scatter = {url = "https://data.pyg.org/whl/torch-2.1.0%2Bcu121/torch_scatter-2.1.2%2Bpt21cu121-cp310-cp310-linux_x86_64.whl"}
38+
torch-sparse = {url = "https://data.pyg.org/whl/torch-2.1.0%2Bcu121/torch_sparse-0.6.18%2Bpt21cu121-cp310-cp310-linux_x86_64.whl"}
39+
torch-spline-conv = {url = "https://data.pyg.org/whl/torch-2.1.0%2Bcu121/torch_spline_conv-1.2.2%2Bpt21cu121-cp310-cp310-linux_x86_64.whl"}
40+
torch-geometric = "^2.5.0"
3541

3642
# [[tool.poetry.source]]
3743
# name = "torch-wheels"

0 commit comments

Comments
 (0)