Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 5 additions & 6 deletions packages/access-esm1p6/package.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class AccessEsm1p6(BundlePackage):
* The CABLE land surface model with biogeochemistry (CASA-CNP) (CABLE2.4)
* The GFDL MOM5 ocean model at 1 degree resolution
* The WOMBATlite ocean BGC model (generic tracer version)
* The LANL CICE5 sea ice model. CICE4 for early development (before 2025.08)
* The LANL CICE5 sea ice model with UM/ACCESS modifications for coupling
* The OASIS-MCT coupler
"""

Expand All @@ -29,9 +29,9 @@ class AccessEsm1p6(BundlePackage):

variant(
"cice",
default="4",
description="Choose the version of the CICE sea-ice model.",
values=("4", "5"),
default="5",
description="(Deprecated) choose the version of the CICE sea-ice model.",
values=("5"),
multi=False,
)
variant(
Expand All @@ -42,8 +42,7 @@ class AccessEsm1p6(BundlePackage):
multi=False,
)

depends_on("cice4", type="run", when="cice=4")
depends_on("cice5 model=access-esm1.6", type="run", when="cice=5")
depends_on("cice5 model=access-esm1.6", type="run")
depends_on("[email protected]", type="run")
# um7 is in a private repository
depends_on("[email protected]", type="run", when="um=access-esm1.5")
Expand Down