summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--var/spack/repos/builtin/packages/ascent/package.py5
-rw-r--r--var/spack/repos/builtin/packages/vtk-h/package.py5
2 files changed, 4 insertions, 6 deletions
diff --git a/var/spack/repos/builtin/packages/ascent/package.py b/var/spack/repos/builtin/packages/ascent/package.py
index 51da6ea5f7..a8b3e6491e 100644
--- a/var/spack/repos/builtin/packages/ascent/package.py
+++ b/var/spack/repos/builtin/packages/ascent/package.py
@@ -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")
diff --git a/var/spack/repos/builtin/packages/vtk-h/package.py b/var/spack/repos/builtin/packages/vtk-h/package.py
index 6386dd9073..91afd9f7fc 100644
--- a/var/spack/repos/builtin/packages/vtk-h/package.py
+++ b/var/spack/repos/builtin/packages/vtk-h/package.py
@@ -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")