diff options
author | Alex Richert <82525672+AlexanderRichert-NOAA@users.noreply.github.com> | 2023-03-01 04:59:45 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-01 13:59:45 +0100 |
commit | a08d86c2012ea4f046aef7bea8331f4f1cb9db2d (patch) | |
tree | 875a8980714c1963ac40ec73e6f1f7963e4195e2 /var | |
parent | 4e70532cd1562e4cb47f1e9dd30a1603fa84502d (diff) | |
download | spack-a08d86c2012ea4f046aef7bea8331f4f1cb9db2d.tar.gz spack-a08d86c2012ea4f046aef7bea8331f4f1cb9db2d.tar.bz2 spack-a08d86c2012ea4f046aef7bea8331f4f1cb9db2d.tar.xz spack-a08d86c2012ea4f046aef7bea8331f4f1cb9db2d.zip |
grib-util: fix dependency constraints (#35668)
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/grib-util/package.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/var/spack/repos/builtin/packages/grib-util/package.py b/var/spack/repos/builtin/packages/grib-util/package.py index 3176a41c32..ee4371b1b8 100644 --- a/var/spack/repos/builtin/packages/grib-util/package.py +++ b/var/spack/repos/builtin/packages/grib-util/package.py @@ -24,10 +24,11 @@ class GribUtil(CMakePackage): depends_on("jasper") depends_on("libpng") depends_on("zlib") - depends_on("w3nco") + depends_on("w3emc", when="@1.2.4:") + depends_on("w3nco", when="@:1.2.3") depends_on("g2") depends_on("bacio") - depends_on("ip") + depends_on("ip@:3.3.3") depends_on("sp") def cmake_args(self): |