summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/conduit/package.py
diff options
context:
space:
mode:
Diffstat (limited to 'var/spack/repos/builtin/packages/conduit/package.py')
-rw-r--r--var/spack/repos/builtin/packages/conduit/package.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/var/spack/repos/builtin/packages/conduit/package.py b/var/spack/repos/builtin/packages/conduit/package.py
index 9715542126..ddefde4fb7 100644
--- a/var/spack/repos/builtin/packages/conduit/package.py
+++ b/var/spack/repos/builtin/packages/conduit/package.py
@@ -88,7 +88,7 @@ class Conduit(Package):
extends("python", when="+python")
# TODO: blas and lapack are disabled due to build
# issues Cyrus experienced on OSX 10.11.6
- depends_on("py-numpy~blas~lapack", when="+python")
+ depends_on("py-numpy~blas~lapack", when="+python", type=('build', 'run'))
#######################
# I/O Packages
@@ -113,7 +113,7 @@ class Conduit(Package):
#######################
# Documentation related
#######################
- depends_on("py-sphinx", when="+python+doc")
+ depends_on("py-sphinx", when="+python+doc", type='build')
depends_on("doxygen", when="+doc")
def install(self, spec, prefix):