summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorAdam J. Stewart <ajstewart426@gmail.com>2019-07-29 17:40:57 -0500
committerPeter Scheibel <scheibel1@llnl.gov>2019-07-29 15:40:57 -0700
commitc9e5de85fd97a7a87a04ca6081569bea39c68948 (patch)
tree922677c9ae91f8acfda255d233913f76329a33eb /var
parentf18c9e0ba536c284090e1b18a9ed6b34f4af89fd (diff)
downloadspack-c9e5de85fd97a7a87a04ca6081569bea39c68948.tar.gz
spack-c9e5de85fd97a7a87a04ca6081569bea39c68948.tar.bz2
spack-c9e5de85fd97a7a87a04ca6081569bea39c68948.tar.xz
spack-c9e5de85fd97a7a87a04ca6081569bea39c68948.zip
SimulationIO package: add version 9.0.1 (#12079)
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/simulationio/package.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/simulationio/package.py b/var/spack/repos/builtin/packages/simulationio/package.py
index 2bf0e1d16c..2d2993f6d1 100644
--- a/var/spack/repos/builtin/packages/simulationio/package.py
+++ b/var/spack/repos/builtin/packages/simulationio/package.py
@@ -15,6 +15,7 @@ class Simulationio(CMakePackage):
git = "https://github.com/eschnett/SimulationIO.git"
version('develop', branch='master')
+ version('9.0.1', sha256='c2f6c99417165f6eb8cbb9c44822d119586675abb34eabd553eb80f44b53e0c8')
version('1.0.0', '5cbf1d0084eb436d861ffcdd297eaa08')
version('0.1.0', '00f7dabc08ed1ab77858785ce0809f50')
@@ -28,7 +29,8 @@ class Simulationio(CMakePackage):
depends_on('julia', when='+julia', type=('build', 'run'))
depends_on('py-h5py', when='+python', type=('build', 'run'))
depends_on('py-numpy', when='+python', type=('build', 'run'))
- depends_on('python@2.7:2.8', when='+python', type=('build', 'run'))
+ depends_on('python@3:', when='@9: +python', type=('build', 'run'))
+ depends_on('python@2.7:2.8', when='@:8 +python', type=('build', 'run'))
depends_on('swig', type='build')
extends('python')