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:
parent
87c55b79c5
commit
02e077a7fa
1 changed files with 1 additions and 1 deletions
|
@ -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'))
|
||||||
|
|
Loading…
Reference in a new issue