diff options
author | Todd Gamblin <tgamblin@llnl.gov> | 2016-01-12 14:26:28 -0800 |
---|---|---|
committer | Todd Gamblin <tgamblin@llnl.gov> | 2016-01-12 14:26:28 -0800 |
commit | 8ead7783ab25d632ac919f2687b6109e52bbb781 (patch) | |
tree | 8d0a0bd45ca636d9e84cd1b14e7adfab4a74b317 | |
parent | 2a36ba9680bf6e6c6545ec63747c723c811ce31b (diff) | |
parent | 8eb16ba02d213998272112142631991a63dc21e3 (diff) | |
download | spack-8ead7783ab25d632ac919f2687b6109e52bbb781.tar.gz spack-8ead7783ab25d632ac919f2687b6109e52bbb781.tar.bz2 spack-8ead7783ab25d632ac919f2687b6109e52bbb781.tar.xz spack-8ead7783ab25d632ac919f2687b6109e52bbb781.zip |
Merge pull request #345 from eschnett/eschnett/petsc-python-2
Correct Python version constraint syntax
-rw-r--r-- | var/spack/packages/petsc/package.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/var/spack/packages/petsc/package.py b/var/spack/packages/petsc/package.py index 43c7f8a9b6..87f700629d 100644 --- a/var/spack/packages/petsc/package.py +++ b/var/spack/packages/petsc/package.py @@ -12,6 +12,8 @@ class Petsc(Package): version('3.5.2', 'ad170802b3b058b5deb9cd1f968e7e13') version('3.5.1', 'a557e029711ebf425544e117ffa44d8f') + depends_on("python @2.6:2.9") # requires Python for building + depends_on("boost") depends_on("blas") depends_on("lapack") |