diff options
author | psakievich <psakiev@sandia.gov> | 2024-04-09 06:49:06 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-09 06:49:06 -0600 |
commit | fb6741cf859424bb6e7c0973ea8e47e390ecad12 (patch) | |
tree | bb7373d749d662b1b825f3fa5075e1d7f9bc7c78 | |
parent | 3f2fa256fc818934fbbcb22e61a297de9da3ba1f (diff) | |
download | spack-fb6741cf859424bb6e7c0973ea8e47e390ecad12.tar.gz spack-fb6741cf859424bb6e7c0973ea8e47e390ecad12.tar.bz2 spack-fb6741cf859424bb6e7c0973ea8e47e390ecad12.tar.xz spack-fb6741cf859424bb6e7c0973ea8e47e390ecad12.zip |
Trilinos: More accurate stk boot dependency (#43550)
Boost was not required as of `@13.4.0`
-rw-r--r-- | var/spack/repos/builtin/packages/trilinos/package.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/trilinos/package.py b/var/spack/repos/builtin/packages/trilinos/package.py index 3b0ede995b..0d08e0e2d7 100644 --- a/var/spack/repos/builtin/packages/trilinos/package.py +++ b/var/spack/repos/builtin/packages/trilinos/package.py @@ -420,7 +420,7 @@ class Trilinos(CMakePackage, CudaPackage, ROCmPackage): depends_on("binder@1.3:", when="@15: +python", type="build") depends_on("blas") depends_on("boost+graph+math+exception+stacktrace", when="+boost") - depends_on("boost+graph+math+exception+stacktrace", when="@:14.0.0 +stk") + depends_on("boost+graph+math+exception+stacktrace", when="@:13.4.0 +stk") depends_on("cgns", when="+exodus") depends_on("cmake@3.23:", type="build", when="@14.0.0:") depends_on("hdf5+hl", when="+hdf5") |