py-scikit-image: include more dependencies (#11912)

* py-scikit-image: include more dependencies

* py-scikit-image: limit some dependencies to recent versions
This commit is contained in:
Milton Woods 2019-07-05 00:38:02 +10:00 committed by Elizabeth Fischer
parent cd18dadf92
commit d88c657f79

View file

@ -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')