From 4c0e8b3bf57a84e97d99e1866ca53d6395184854 Mon Sep 17 00:00:00 2001 From: Matt Wala Date: Wed, 23 Jan 2019 17:01:14 -0600 Subject: [PATCH 1/3] Fix Conda test failures, move to Python 3.7 This fixed recent Conda failures due to lack of a version of pyopencl 2018.2.2 by moving from Python 3.5 to Python 3.7. --- .test-conda-env-py3.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.test-conda-env-py3.yml b/.test-conda-env-py3.yml index b2b8b1b4..f36b1bd4 100644 --- a/.test-conda-env-py3.yml +++ b/.test-conda-env-py3.yml @@ -10,7 +10,7 @@ dependencies: - pocl - islpy - pyopencl -- python=3.5 +- python=3.7 - symengine=0.3.0 - python-symengine=0.3.0 # things not in here: loopy boxtree pymbolic pyfmmlib -- GitLab From a6414ea85c2d774e98606c481ead27dbbc8acd98 Mon Sep 17 00:00:00 2001 From: Matt Wala Date: Wed, 23 Jan 2019 17:02:16 -0600 Subject: [PATCH 2/3] Rename CI job --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index aa420589..049618cf 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -82,7 +82,7 @@ Python 3.7 Titan X: reports: junit: test/pytest.xml -Python 3.5 Conda: +Python 3.7 Conda: script: # Disable caching to ensure SymEngine code generation is exercised. - export SUMPY_NO_CACHE=1 -- GitLab From 6d96ccf204db82393d2eb55e09a450bf3bba0dd7 Mon Sep 17 00:00:00 2001 From: Matt Wala Date: Wed, 23 Jan 2019 17:22:38 -0600 Subject: [PATCH 3/3] Try 3.6 instead --- .gitlab-ci.yml | 2 +- .test-conda-env-py3.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 049618cf..59877cae 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -82,7 +82,7 @@ Python 3.7 Titan X: reports: junit: test/pytest.xml -Python 3.7 Conda: +Python 3.6 Conda: script: # Disable caching to ensure SymEngine code generation is exercised. - export SUMPY_NO_CACHE=1 diff --git a/.test-conda-env-py3.yml b/.test-conda-env-py3.yml index f36b1bd4..a696dc8d 100644 --- a/.test-conda-env-py3.yml +++ b/.test-conda-env-py3.yml @@ -10,7 +10,7 @@ dependencies: - pocl - islpy - pyopencl -- python=3.7 +- python=3.6 - symengine=0.3.0 - python-symengine=0.3.0 # things not in here: loopy boxtree pymbolic pyfmmlib -- GitLab