From e52981fdbdb166c0d5d213722a215d61a177719a Mon Sep 17 00:00:00 2001 From: xywei Date: Thu, 24 Oct 2019 15:34:25 -0500 Subject: [PATCH 1/5] Tweak CI env --- requirements.txt | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/requirements.txt b/requirements.txt index be4d316..14365e4 100644 --- a/requirements.txt +++ b/requirements.txt @@ -2,14 +2,15 @@ -e git+https://gitlab.tiker.net/xywei/boxtree.git#egg=boxtree -e git+https://www.github.com/xywei/gmsh_interop.git#egg=gmsh_interop --e git+https://gitlab.tiker.net/xywei/meshmode.git#egg=meshmode --e git+https://gitlab.tiker.net/xywei/pymbolic.git#egg=pymbolic -e git+https://gitlab.tiker.net/xywei/pytential.git#egg=pytential --e git+https://gitlab.tiker.net/xywei/sumpy.git#egg=sumpy +-e git+https://gitlab.tiker.net/xywei/pypvfmm.git#egg=pypvfmm -e git+https://gitlab.tiker.net/inducer/cgen.git#egg=cgen +-e git+https://gitlab.tiker.net/inducer/meshmode.git#egg=meshmode -e git+https://gitlab.tiker.net/inducer/genpy.git#egg=genpy -e git+https://gitlab.tiker.net/inducer/pyvisfile.git#egg=pyvisfile +-e git+https://gitlab.tiker.net/inducer/pymbolic.git#egg=pymbolic +-e git+https://gitlab.tiker.net/inducer/sumpy.git#egg=sumpy -e git+https://gitlab.tiker.net/inducer/loopy.git#egg=loo.py -e git+https://gitlab.tiker.net/inducer/modepy.git#egg=modepy -- GitLab From 698c5e6e1e7b3e597972bdea1b00b78a8d0ca3d6 Mon Sep 17 00:00:00 2001 From: xywei Date: Thu, 24 Oct 2019 16:06:59 -0500 Subject: [PATCH 2/5] Install pypvfmm without -e --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 14365e4..a40693e 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,9 +1,9 @@ --index-url https://pypi.python.org/simple/ +git+https://gitlab.tiker.net/xywei/pypvfmm.git#egg=pypvfmm -e git+https://gitlab.tiker.net/xywei/boxtree.git#egg=boxtree -e git+https://www.github.com/xywei/gmsh_interop.git#egg=gmsh_interop -e git+https://gitlab.tiker.net/xywei/pytential.git#egg=pytential --e git+https://gitlab.tiker.net/xywei/pypvfmm.git#egg=pypvfmm -e git+https://gitlab.tiker.net/inducer/cgen.git#egg=cgen -e git+https://gitlab.tiker.net/inducer/meshmode.git#egg=meshmode -- GitLab From d757d1b5d441a7c4c8309c018f5afda1c17eee4f Mon Sep 17 00:00:00 2001 From: xywei Date: Thu, 24 Oct 2019 19:26:44 -0500 Subject: [PATCH 3/5] Ignore sumpy for pylint --- .pylintrc-local.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.pylintrc-local.yml b/.pylintrc-local.yml index 64c2df7..fa776f9 100644 --- a/.pylintrc-local.yml +++ b/.pylintrc-local.yml @@ -4,6 +4,7 @@ val: - scipy.* - gmsh + - sumpy - arg: disable val: all - arg: enable -- GitLab From 9666aeb31b6c5b5a90f5fa814773ea3a64cd96d9 Mon Sep 17 00:00:00 2001 From: xywei Date: Thu, 24 Oct 2019 20:54:50 -0500 Subject: [PATCH 4/5] Pylint fixes --- .pylintrc-local.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.pylintrc-local.yml b/.pylintrc-local.yml index fa776f9..407c512 100644 --- a/.pylintrc-local.yml +++ b/.pylintrc-local.yml @@ -4,7 +4,7 @@ val: - scipy.* - gmsh - - sumpy + - sumpy.* - arg: disable val: all - arg: enable -- GitLab From 234e83add049d48f4513c98366ef1ef5a697447b Mon Sep 17 00:00:00 2001 From: xywei Date: Thu, 24 Oct 2019 21:40:36 -0500 Subject: [PATCH 5/5] Pylint fix --- .pylintrc-local.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.pylintrc-local.yml b/.pylintrc-local.yml index 407c512..ecff412 100644 --- a/.pylintrc-local.yml +++ b/.pylintrc-local.yml @@ -4,7 +4,7 @@ val: - scipy.* - gmsh - - sumpy.* + - sumpy,sumpy.kernel - arg: disable val: all - arg: enable -- GitLab