ascent: Relax CMake version constraints (#22253)

This commit is contained in:
Chuck Atkins 2021-03-12 14:37:43 -05:00 committed by GitHub
parent cf29ee6b2b
commit 474e616a5b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 6 deletions

View File

@ -82,9 +82,8 @@ class Ascent(Package, CudaPackage):
# package dependencies
###########################################################################
# use cmake 3.14, newest that provides proper cuda support
# and we have seen errors with cuda in 3.15
depends_on("cmake@3.14.1:3.14.99", type='build')
# Certain CMake versions have been found to break for our use cases
depends_on("cmake@3.14.1:3.14.99,3.18.2:", type='build')
depends_on("conduit~python", when="~python")
depends_on("conduit+python", when="+python+shared")
depends_on("conduit~shared~python", when="~shared")

View File

@ -63,9 +63,8 @@ class VtkH(Package, CudaPackage):
variant("logging", default=False, description="Build vtk-h with logging enabled")
variant("contourtree", default=False, description="Enable contour tree support")
# use cmake 3.14, newest that provides proper cuda support
# and we have seen errors with cuda in 3.15
depends_on("cmake@3.14.1:3.14.99", type='build')
# Certain CMake versions have been found to break for our use cases
depends_on("cmake@3.14.1:3.14.99,3.18.2", type='build')
depends_on("mpi", when="+mpi")
depends_on("cuda", when="+cuda")