summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMilton Woods <miltonjwoods@gmail.com>2019-07-05 00:38:02 +1000
committerElizabeth Fischer <elizabeth.fischer@columbia.edu>2019-07-04 10:38:02 -0400
commitd88c657f79e6b8d1689979931ae8da47d158a223 (patch)
treeb098953860d74e2bcb672f5b659d3e9450568eaf
parentcd18dadf92154242e7075dd424d92e86066c8e23 (diff)
downloadspack-d88c657f79e6b8d1689979931ae8da47d158a223.tar.gz
spack-d88c657f79e6b8d1689979931ae8da47d158a223.tar.bz2
spack-d88c657f79e6b8d1689979931ae8da47d158a223.tar.xz
spack-d88c657f79e6b8d1689979931ae8da47d158a223.zip
py-scikit-image: include more dependencies (#11912)
* py-scikit-image: include more dependencies * py-scikit-image: limit some dependencies to recent versions
-rw-r--r--var/spack/repos/builtin/packages/py-scikit-image/package.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/py-scikit-image/package.py b/var/spack/repos/builtin/packages/py-scikit-image/package.py
index 63b398305a..d8c5e9c7b4 100644
--- a/var/spack/repos/builtin/packages/py-scikit-image/package.py
+++ b/var/spack/repos/builtin/packages/py-scikit-image/package.py
@@ -19,10 +19,13 @@ class PyScikitImage(PythonPackage):
extends('python', ignore=r'bin/.*\.py$')
depends_on('py-dask', type=('build', 'run'))
- depends_on('pil', type=('build', 'run'))
+ depends_on('py-pillow', type=('build', 'run'))
depends_on('py-networkx', type=('build', 'run'))
depends_on('py-six', type=('build', 'run'))
+ depends_on('py-numpy', type=('build', 'run'))
depends_on('py-scipy', type=('build', 'run'))
depends_on('py-matplotlib', type=('build', 'run'))
+ depends_on('py-pywavelets', type=('build', 'run'), when='@0.14:')
+ depends_on('py-cloudpickle', type=('build', 'run'), when='@0.14:')
depends_on('py-setuptools', type='build')
depends_on('py-cython@0.23.4:', type='build')