From 1cfad92114ae7bc9789a5517d9a5f6d0e969483d Mon Sep 17 00:00:00 2001 From: Alex Richert <82525672+AlexanderRichert-NOAA@users.noreply.github.com> Date: Mon, 22 Jan 2024 16:24:02 -0800 Subject: [PATCH] Update package.py --- spack/package.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/spack/package.py b/spack/package.py index 72565220..662e4e8b 100644 --- a/spack/package.py +++ b/spack/package.py @@ -55,6 +55,12 @@ class Ip(CMakePackage): when="@5.0:", ) + depends_on("sp", when="@:4") + depends_on("sp@:2.3.3", when="@:4.0") + depends_on("sp precision=4", when="@4.1:4 precision=4") + depends_on("sp precision=d", when="@4.1:4 precision=d") + depends_on("sp precision=8", when="@4.1:4 precision=8") + def cmake_args(self): args = [ self.define_from_variant("OPENMP", "openmp"),