From c30a93bbce4590e1ba916c629bd6f834e0635097 Mon Sep 17 00:00:00 2001 From: Gao Wang Date: Sat, 4 Jan 2020 10:23:04 -0600 Subject: [PATCH] Release version 0.4.2 --- README.md | 7 ++++++- dscrutils/DESCRIPTION | 2 +- src/dsc_translator.py | 2 +- src/version.py | 2 +- 4 files changed, 9 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index edc9654..a8165ab 100644 --- a/README.md +++ b/README.md @@ -84,6 +84,11 @@ all existing files. We apologize for the inconveniences it incurs. ## Change Log +### 0.4.2 + +- Issue #214 for container support. +- SoS bumped to version 0.21.5 for container support. + ### 0.4.0 - Issue #194 @@ -99,7 +104,7 @@ all existing files. We apologize for the inconveniences it incurs. - Issue #154 - Add a remote job option `nodes_per_job` and provide such mechanism to run on multiple nodes. -- SoS bumped to version 0.20.2 +- SoS bumped to version 0.20.2. 0.3.9 diff --git a/dscrutils/DESCRIPTION b/dscrutils/DESCRIPTION index eba8a91..2e29fe8 100644 --- a/dscrutils/DESCRIPTION +++ b/dscrutils/DESCRIPTION @@ -1,7 +1,7 @@ Package: dscrutils Encoding: UTF-8 Type: Package -Version: 0.4.1 +Version: 0.4.2 Date: 2019-12-03 Title: Dynamic Statistical Comparisons R Interface Authors@R: c(person("Gao","Wang",role=c("aut","cre"), diff --git a/src/dsc_translator.py b/src/dsc_translator.py index 457d49d..7110092 100644 --- a/src/dsc_translator.py +++ b/src/dsc_translator.py @@ -250,7 +250,7 @@ def pull_images(self, containers): try: execute_workflow(script, workflow='container', options=dict(verbosity=1)) except Exception as e: - raise ModuleNotFoundError(f'Container ``{container}`` must have DSC software (including R package dscrutils) installed in order to be used in DSC environment.') + raise ModuleNotFoundError(f'Please make sure ``{container}`` is available (locally or online) and has DSC software (including R package dscrutils) installed for use in DSC environment.') def get_dependency(self): res = dict() diff --git a/src/version.py b/src/version.py index f0ede3d..a987347 100644 --- a/src/version.py +++ b/src/version.py @@ -1 +1 @@ -__version__ = '0.4.1' +__version__ = '0.4.2'