summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorSeth R. Johnson <johnsonsr@ornl.gov>2023-04-24 12:23:16 -0400
committerGitHub <noreply@github.com>2023-04-24 09:23:16 -0700
commit3092bd255977856cdb8d9d0c780feb71291ce8d8 (patch)
tree857ddde24cf10c84bcdafff4b1431abe802f436e /var
parent48347bbd7cfdcb5008e5e2b93bcb0d9842911c47 (diff)
downloadspack-3092bd255977856cdb8d9d0c780feb71291ce8d8.tar.gz
spack-3092bd255977856cdb8d9d0c780feb71291ce8d8.tar.bz2
spack-3092bd255977856cdb8d9d0c780feb71291ce8d8.tar.xz
spack-3092bd255977856cdb8d9d0c780feb71291ce8d8.zip
silo: loosen hdf5 version requirements (#37146)
We have successfully been building silo@4.10.2 against hdf5@1.10.4 from some time. Refinement of #34275 (which was concerned with 4.11 but unnecessarily restricted 4.10).
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/silo/package.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/silo/package.py b/var/spack/repos/builtin/packages/silo/package.py
index cd8843ac98..123ad8418d 100644
--- a/var/spack/repos/builtin/packages/silo/package.py
+++ b/var/spack/repos/builtin/packages/silo/package.py
@@ -52,7 +52,7 @@ class Silo(AutotoolsPackage):
depends_on("automake", type="build", when="+shared")
depends_on("libtool", type="build", when="+shared")
depends_on("mpi", when="+mpi")
- depends_on("hdf5@1.8", when="@:4.10+hdf5")
+ depends_on("hdf5@1.8:1.10", when="@:4.10+hdf5")
depends_on("hdf5@1.12:", when="@4.11:+hdf5")
depends_on("qt+gui~framework@4.8:4.9", when="+silex")
depends_on("libx11", when="+silex")