diff --git a/pdelfin/s3_utils.py b/pdelfin/s3_utils.py index 620b9df..d1c71ea 100644 --- a/pdelfin/s3_utils.py +++ b/pdelfin/s3_utils.py @@ -180,7 +180,7 @@ def download_directory(model_choices: List[str], local_dir: str): weka_choices = [path for path in model_choices if path.startswith("weka://")] # This is so hacky, but if you are on beaker/pluto, don't use weka - if os.environ.get("BEAKER_NODE_HOSTNAME", "").lower().startswith("pluto") or os.environ.get("BEAKER_NODE_HOSTNAME", "").lower().startswith("augusta") : + if os.environ.get("BEAKER_NODE_HOSTNAME", "").lower().startswith("pluto"): weka_choices = [] other_choices = [path for path in model_choices if not path.startswith("weka://")] diff --git a/pdelfin/version.py b/pdelfin/version.py index 9dd49e3..ef96fe8 100644 --- a/pdelfin/version.py +++ b/pdelfin/version.py @@ -2,7 +2,7 @@ _MAJOR = "0" _MINOR = "1" # On main and in a nightly release the patch should be one ahead of the last # released build. -_PATCH = "22" +_PATCH = "23" # This is mainly for nightly builds which have the suffix ".dev$DATE". See # https://semver.org/#is-v123-a-semantic-version for the semantics. _SUFFIX = ""