Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Open sidebar
lscsoft
bilby_pipe
Commits
fceb8db3
Commit
fceb8db3
authored
Mar 05, 2019
by
Gregory Ashton
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Version 0.0.4 release
parent
9cedbb1c
Pipeline
#51797
passed with stage
in 1 minute and 18 seconds
Changes
3
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
36 additions
and
3 deletions
+36
-3
CHANGELOG.md
CHANGELOG.md
+5
-0
containers/Singularity.0.0.4
containers/Singularity.0.0.4
+28
-0
setup.py
setup.py
+3
-3
No files found.
CHANGELOG.md
View file @
fceb8db3
...
...
@@ -4,11 +4,16 @@
Changes currently on master, but not under a tag.
## [0.0.4] 2018-03-05
### Added
-
Flag for running the data generation step on the local head node
-
Flag fot setting random seeds
### Changes
-
Moved all command line argument logic to a single module with switches
-
Moved data generation to use gwpy only
-
Moved PSD generation t use gwpy only
## [0.0.3] 2018-01-14
...
...
containers/Singularity.0.0.4
0 → 100644
View file @
fceb8db3
Bootstrap: docker
From: bilbydev/bilby-test-suite-python37
%help
A singularity container for running bilby_pipe.
%post
export PATH=/opt/conda/bin:${PATH}
conda install -y -c conda-forge ldas-tools-framecpp
conda install -y -c conda-forge python-nds2-client
pip install numpy==1.15
pip install pandas==0.23
pip install pesummary
pip install ligo-gracedb
pip install bilby==0.4.1
pip install bilby_pipe==0.0.4
%runscript
bilby_pipe "$@" --singularity-image "$SINGULARITY_CONTAINER"
%apprun generation
bilby_pipe_generation "$@"
%apprun analysis
bilby_pipe_analysis "$@"
%apprun create_injection_file
bilby_pipe_create_injection_file "$@"
setup.py
View file @
fceb8db3
...
...
@@ -60,8 +60,8 @@ def get_long_description():
return
long_description
version
=
"0.0.
3
"
version_file
=
write_version_file
(
version
)
VERSION
=
"0.0.
4
"
version_file
=
write_version_file
(
VERSION
)
long_description
=
get_long_description
()
setup
(
...
...
@@ -72,7 +72,7 @@ setup(
author
=
"Gregory Ashton, Isobel Romero-Shaw, Colm Talbot, Charlie Hoy"
,
author_email
=
"gregory.ashton@ligo.org"
,
license
=
"MIT"
,
version
=
version
,
version
=
VERSION
,
package_data
=
{
"bilby_pipe"
:
[
version_file
,
"templates/*html"
]},
packages
=
[
"bilby_pipe"
],
install_requires
=
[
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment