Fix deptype of various dependencies on Python packages (#3486)

This commit is contained in:
Adam J. Stewart
2017-03-18 15:20:16 -05:00
committed by GitHub
parent 6b97f538cf
commit 9d0a3c6b05
20 changed files with 34 additions and 32 deletions

View File

@@ -42,8 +42,8 @@ class PyIpython(PythonPackage):
# These dependencies breaks concretization
# See https://github.com/LLNL/spack/issues/2793
# depends_on('py-backports-shutil-get-terminal-size', when="^python@:3.2.999") # noqa
# depends_on('py-pathlib2', when="^python@:3.3.999")
# depends_on('py-backports-shutil-get-terminal-size', type=('build', 'run'), when="^python@:3.2.999") # noqa
# depends_on('py-pathlib2', type=('build', 'run'), when="^python@:3.3.999")
depends_on('py-backports-shutil-get-terminal-size', type=('build', 'run'))
depends_on('py-pathlib2', type=('build', 'run'))