From c5a9d5183f58bbc676495e9ef561741805bade5c Mon Sep 17 00:00:00 2001 From: Shagun Sodhani Date: Tue, 27 Oct 2020 06:57:08 -0700 Subject: [PATCH 1/5] Dummy commit to trigger CI --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1c661d8..2ffcd65 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ API to interface with the GraphLog Dataset. GraphLog is a multi-purpose, multi-r ### Installation -* Supported Python Version: 3.6+ +* Supported Python Version: 3.6, 3.7, 3.8 * Install PyTorch from https://pytorch.org/get-started/locally/ * Install pytorch-geometric (and other dependencies) from https://github.com/rusty1s/pytorch_geometric#installation. Make sure that cpu/cuda versions for pytorch and pytorch-geometric etc matches. * `pip install graphlog` From 4af8725f648945794bdebf998c5456c016f18675 Mon Sep 17 00:00:00 2001 From: Shagun Sodhani Date: Tue, 27 Oct 2020 07:33:38 -0700 Subject: [PATCH 2/5] Request machines with medium ram --- .circleci/config.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index 35e7861..5f80bf7 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -8,6 +8,7 @@ jobs: py36_linux: docker: - image: circleci/python:3.6 + - resource_class: medium+ steps: - checkout - run: @@ -25,6 +26,7 @@ jobs: py37_linux: docker: - image: circleci/python:3.7 + - resource_class: medium+ steps: - checkout - run: @@ -42,6 +44,7 @@ jobs: py38_linux: docker: - image: circleci/python:3.8 + - resource_class: medium+ steps: - checkout - run: From fea1e80a07d11c47fa859c6989958bf5c1fb4372 Mon Sep 17 00:00:00 2001 From: Shagun Sodhani Date: Tue, 27 Oct 2020 07:43:07 -0700 Subject: [PATCH 3/5] Fix error in config --- .circleci/config.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 5f80bf7..2e0331c 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -8,7 +8,7 @@ jobs: py36_linux: docker: - image: circleci/python:3.6 - - resource_class: medium+ + resource_class: medium+ steps: - checkout - run: @@ -26,7 +26,7 @@ jobs: py37_linux: docker: - image: circleci/python:3.7 - - resource_class: medium+ + resource_class: medium+ steps: - checkout - run: @@ -44,7 +44,7 @@ jobs: py38_linux: docker: - image: circleci/python:3.8 - - resource_class: medium+ + resource_class: medium+ steps: - checkout - run: From 022e82afc86262cea709f6e31b723517b782a496 Mon Sep 17 00:00:00 2001 From: Shagun Sodhani Date: Tue, 27 Oct 2020 07:48:56 -0700 Subject: [PATCH 4/5] Try with more RAM --- .circleci/config.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 2e0331c..862e217 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -8,7 +8,7 @@ jobs: py36_linux: docker: - image: circleci/python:3.6 - resource_class: medium+ + resource_class: large steps: - checkout - run: @@ -26,7 +26,7 @@ jobs: py37_linux: docker: - image: circleci/python:3.7 - resource_class: medium+ + resource_class: xlarge steps: - checkout - run: @@ -44,7 +44,7 @@ jobs: py38_linux: docker: - image: circleci/python:3.8 - resource_class: medium+ + resource_class: 2xlarge steps: - checkout - run: From d1a311e96ef8522ecc74453604bdd234839641eb Mon Sep 17 00:00:00 2001 From: Shagun Sodhani Date: Tue, 27 Oct 2020 07:58:38 -0700 Subject: [PATCH 5/5] Use xlarge machines for the test --- .circleci/config.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 862e217..bcad1cc 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -8,7 +8,7 @@ jobs: py36_linux: docker: - image: circleci/python:3.6 - resource_class: large + resource_class: xlarge steps: - checkout - run: @@ -44,7 +44,7 @@ jobs: py38_linux: docker: - image: circleci/python:3.8 - resource_class: 2xlarge + resource_class: xlarge steps: - checkout - run: