From 6e1d51612b7cdee2362d6cbde8a5ec691b0cc38f Mon Sep 17 00:00:00 2001 From: Isuru Fernando <isuruf@gmail.com> Date: Fri, 26 Jan 2018 15:22:57 -0600 Subject: [PATCH] Add scipy to requirements --- .test-conda-env-py3.yml | 1 + requirements.txt | 1 + setup.py | 1 + 3 files changed, 3 insertions(+) diff --git a/.test-conda-env-py3.yml b/.test-conda-env-py3.yml index b2b8b1b4..7d69115b 100644 --- a/.test-conda-env-py3.yml +++ b/.test-conda-env-py3.yml @@ -13,4 +13,5 @@ dependencies: - python=3.5 - symengine=0.3.0 - python-symengine=0.3.0 +- scipy # things not in here: loopy boxtree pymbolic pyfmmlib diff --git a/requirements.txt b/requirements.txt index 6690e3d9..675dc330 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,6 @@ numpy sympy==1.0 +scipy>=0.13 git+https://github.com/inducer/pymbolic git+https://github.com/inducer/islpy git+https://github.com/inducer/pyopencl diff --git a/setup.py b/setup.py index 400d1b9f..b8edda29 100644 --- a/setup.py +++ b/setup.py @@ -45,6 +45,7 @@ setup(name="sumpy", "boxtree>=2013.1", "pytest>=2.3", "six", + "scipy>=0.13", # If this causes issues, see: # https://code.google.com/p/sympy/issues/detail?id=3874 -- GitLab