From ee56c3cd6de2c246514244fd9b3b366ed62cfad3 Mon Sep 17 00:00:00 2001 From: Gregory Ashton <gregory.ashton@ligo.org> Date: Mon, 4 Mar 2019 10:21:31 +1100 Subject: [PATCH] Version 0.4.1 release --- CHANGELOG.md | 11 +++++++++++ containers/Singularity.0.4.1 | 15 +++++++++++++++ setup.py | 2 +- 3 files changed, 27 insertions(+), 1 deletion(-) create mode 100644 containers/Singularity.0.4.1 diff --git a/CHANGELOG.md b/CHANGELOG.md index 6fe3934b..93611c64 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,17 @@ ## Unreleased +### Added +- + +### Changed +- + +### Removed +- + +## [0.4.1] 2019-03-04 + ### Added - Support for JSON result files - Before sampling a test is performed for redundant priors diff --git a/containers/Singularity.0.4.1 b/containers/Singularity.0.4.1 new file mode 100644 index 00000000..5e966dea --- /dev/null +++ b/containers/Singularity.0.4.1 @@ -0,0 +1,15 @@ +Bootstrap: docker +From: bilbydev/bilby-test-suite-python37 + +%help +A singularity container for running bilby scripts. To use, simply execute the +container, providing the bilby_script and any additional arguments. E.g., + +./name_of_this_container.simg run_script.py + +%post +export PATH="/opt/conda/bin:$PATH" +pip install bilby==0.4.1 + +%runscript +exec /opt/conda/bin/python "$@" diff --git a/setup.py b/setup.py index 20f5e557..d63e9926 100644 --- a/setup.py +++ b/setup.py @@ -57,7 +57,7 @@ def readfile(filename): return filecontents -VERSION = '0.4.0' +VERSION = '0.4.1' version_file = write_version_file(VERSION) long_description = get_long_description() -- GitLab