From 9739cbc7dd5a7ecca33039002221c320b0b7f60f Mon Sep 17 00:00:00 2001 From: Gregory Ashton <gregory.ashton@ligo.org> Date: Sun, 10 Feb 2019 11:33:29 +1100 Subject: [PATCH] Version 0.3.6 release --- CHANGELOG.md | 8 ++++++++ containers/Singularity.0.3.6 | 15 +++++++++++++++ setup.py | 2 +- 3 files changed, 24 insertions(+), 1 deletion(-) create mode 100644 containers/Singularity.0.3.6 diff --git a/CHANGELOG.md b/CHANGELOG.md index fe941d55..60490a67 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,14 @@ ## Unreleased +### Added +- + +### Changed +- + +## [0.3.6] 2019-02-10 + ### Added - Added the PolyChord sampler, which can be accessed by using `sampler='pypolychord'` in `run_sampler` - `emcee` now writes all progress to disk and can resume from a previous run. diff --git a/containers/Singularity.0.3.6 b/containers/Singularity.0.3.6 new file mode 100644 index 00000000..72642267 --- /dev/null +++ b/containers/Singularity.0.3.6 @@ -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.3.6 + +%runscript +exec /opt/conda/bin/python "$@" diff --git a/setup.py b/setup.py index 9e1dc01e..dd1852d2 100644 --- a/setup.py +++ b/setup.py @@ -57,7 +57,7 @@ def readfile(filename): return filecontents -VERSION = '0.3.5' +VERSION = '0.3.6' version_file = write_version_file(VERSION) long_description = get_long_description() -- GitLab