Skip to content
Snippets Groups Projects
Commit bc738186 authored by Gregory Ashton's avatar Gregory Ashton
Browse files

Version 0.4.0 release

parent 09c54d92
No related branches found
No related tags found
No related merge requests found
...@@ -5,9 +5,18 @@ ...@@ -5,9 +5,18 @@
### Added ### Added
- -
### Changed
-
### Removed
-
## [0.4.0] 2019-02-15
### Changed ### Changed
- Fixed an accidental addition of astropy as a first-class dependency and added a check for missing dependencies to the C.I. - Fixed an accidental addition of astropy as a first-class dependency and added a check for missing dependencies to the C.I.
- Fixed a bug in the "create-your-own-time-domain-model" example - Fixed a bug in the "create-your-own-time-domain-model" example
- Added citation guide to the readme
## [0.3.6] 2019-02-10 ## [0.3.6] 2019-02-10
......
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 pandas==0.23 # Tempory fix for issue with saving h5 files
pip install bilby==0.4.0
%runscript
exec /opt/conda/bin/python "$@"
...@@ -57,7 +57,7 @@ def readfile(filename): ...@@ -57,7 +57,7 @@ def readfile(filename):
return filecontents return filecontents
VERSION = '0.3.6' VERSION = '0.4.0'
version_file = write_version_file(VERSION) version_file = write_version_file(VERSION)
long_description = get_long_description() long_description = get_long_description()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment