Open MPI: fix pmix dependency for 5.0.x releases (#36773)

The Open MPI 5.0.x release stream needs PMIx 4.2(?).x  not 5
(which transates to pmix-master).

Signed-off-by: Howard Pritchard <howardp@lanl.gov>
This commit is contained in:
Howard Pritchard 2023-04-11 22:22:56 -06:00 committed by GitHub
parent 575bd1c3f8
commit 781769545f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -554,7 +554,7 @@ class Openmpi(AutotoolsPackage, CudaPackage):
# depends_on('pmix@3.2.3', when='@4.1.2')
depends_on("pmix@1.0:1", when="@2.0:2")
depends_on("pmix@3.2:", when="@4.0:4")
depends_on("pmix@5:", when="@5.0:5")
depends_on("pmix@4.2:", when="@5.0:5")
# Libevent is required when *vendored* PMIx is used
depends_on("libevent@2:", when="@main")