diff options
author | Howard Pritchard <howardp@lanl.gov> | 2024-02-27 01:49:29 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-27 09:49:29 +0100 |
commit | 5340e0184d88d439af1ff91c3a1e6c53fa9374c6 (patch) | |
tree | e15f6c1f84b473965ce2b7bfa60f9dad6411798b | |
parent | bca7698138d643509b335a13c547c0bf6331f7db (diff) | |
download | spack-5340e0184d88d439af1ff91c3a1e6c53fa9374c6.tar.gz spack-5340e0184d88d439af1ff91c3a1e6c53fa9374c6.tar.bz2 spack-5340e0184d88d439af1ff91c3a1e6c53fa9374c6.tar.xz spack-5340e0184d88d439af1ff91c3a1e6c53fa9374c6.zip |
Open MPI: adjust pmix dependency for 5.0.x (#42827)
for various reasons had to advance dependency of 5.0.2 to at least
pmix 4.2.4. 5.0.1 and 5.0.0 can also build with 4.2.4 pmix or newer.
related to #42651
Signed-off-by: Howard Pritchard <howardp@lanl.gov>
-rw-r--r-- | var/spack/repos/builtin/packages/openmpi/package.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/openmpi/package.py b/var/spack/repos/builtin/packages/openmpi/package.py index 524e3da3d7..6fb017ae02 100644 --- a/var/spack/repos/builtin/packages/openmpi/package.py +++ b/var/spack/repos/builtin/packages/openmpi/package.py @@ -587,7 +587,7 @@ class Openmpi(AutotoolsPackage, CudaPackage): with when("~internal-pmix"): depends_on("pmix@1", when="@2") depends_on("pmix@3.2:", when="@4:") - depends_on("pmix@4.2:", when="@5:") + depends_on("pmix@4.2.4:", when="@5:") # pmix@4.2.3 contains a breaking change, compat fixed in openmpi@4.1.6 # See https://www.mail-archive.com/announce@lists.open-mpi.org//msg00158.html |