simulationio: Correct HDF5 dependency bounds (#14626)

The HDF5 dependency bound was inverted. (How did this ever compile? There is a cmake check.)
This commit is contained in:
Erik Schnetter 2020-01-26 18:22:43 -05:00 committed by Adam J. Stewart
parent 87c55b79c5
commit 02e077a7fa

View file

@ -23,7 +23,7 @@ class Simulationio(CMakePackage):
variant('pic', default=True, variant('pic', default=True,
description="Produce position-independent code") description="Produce position-independent code")
depends_on('hdf5 +cxx @:1.10.0-patch1') depends_on('hdf5 +cxx @1.10.1:')
depends_on('julia', when='+julia', type=('build', 'run')) depends_on('julia', when='+julia', type=('build', 'run'))
depends_on('py-h5py', when='+python', type=('build', 'run')) depends_on('py-h5py', when='+python', type=('build', 'run'))
depends_on('py-numpy', when='+python', type=('build', 'run')) depends_on('py-numpy', when='+python', type=('build', 'run'))