diff --git a/CHANGELOG.md b/CHANGELOG.md index c0a842c..087ef78 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,7 @@ - Consolidate `build_cluster.json` into `cluster.json`. (#167, @kelly-sovacool) - Remove unused miniconda container. (#168, @kelly-sovacool) - Fix error in RSEQC rules. (#172, @kelly-sovacool) +- Fix error in `renee build` where `image_cache()` wasn't imported. (#178, @kelly-sovacool) ## RENEE 2.6.1 diff --git a/src/renee/__main__.py b/src/renee/__main__.py index 0f3d274..d39f26c 100755 --- a/src/renee/__main__.py +++ b/src/renee/__main__.py @@ -28,7 +28,7 @@ check_python_version, _cp_r_safe_, ) -from ccbr_tools.pipeline.cache import get_sif_cache_dir +from ccbr_tools.pipeline.cache import get_sif_cache_dir, image_cache # local imports from .run import run