Skip to content

Commit

Permalink
[skip ci][Docker, CI] Update DGL installation, temp disable DGL tutorial
Browse files Browse the repository at this point in the history
  • Loading branch information
masahi committed Jan 26, 2022
1 parent 6720d35 commit bb88289
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion docker/install/ubuntu_install_dgl.sh
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@ set -e
set -u
set -o pipefail

pip3 install dgl
pip install dgl==v0.7.2 -f https://data.dgl.ai/wheels/repo.html
4 changes: 4 additions & 0 deletions gallery/how_to/work_with_relay/build_gcn.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,10 @@ def evaluate(data, logits):
"""
dataset = "cora"

# Temporary disable running load_dataset(dataset) until the CI issue is resolved
import sys
sys.exit()

g, data = load_dataset(dataset)

num_layers = 1
Expand Down

0 comments on commit bb88289

Please sign in to comment.