diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index e9ff687d005607387fdf7ee952e8f006ab5797d6..bbba150968f4fff89cc8d02f4cc50ee50865676b 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -67,7 +67,7 @@ pages: script: - mkdir public/ - mv htmlcov/ public/ - - mv /builds/lscsoft/bilby/coverage_badge.svg public/ + - mv coverage_badge.svg public/ - mv docs/_build/html/* public/ artifacts: paths: diff --git a/CHANGELOG.md b/CHANGELOG.md index 7e77e49931b9f50fd45b656f019c8fd7b660bf49..3c8e52e2f6b5bcadd143545534fe6f2e81fe6e1b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -94,7 +94,7 @@ re-instantiate the Prior in most cases ### Added - InterferometerStrainData now handles both time-domain and frequencu-domain data -- Adds documentation on setting data (https://monash.docs.ligo.org/bilby/transient-gw-data.html) +- Adds documentation on setting data (https://lscsoft.docs.ligo.org/bilby/transient-gw-data.html) - Checkpointing for `dynesty`: the sampling will be checkpointed every 10 minutes (approximately) and can be resumed. - Add functionality to plot multiple results in a corner plot, see `bilby.core.result.plot_multiple()`. - Likelihood evaluations are now saved along with the posteriors. @@ -121,9 +121,8 @@ First `pip` installable version https://pypi.org/project/BILBY/ . - Major effort to update all docstrings and add some documentation. - Marginalized likelihoods. - Examples of searches for gravitational waves from a Supernova and using a sine-Gaussian. -- A `PriorSet` to handle sets of priors and allows reading in from a standardised prior file (see https://monash.docs.ligo.org/bilby/prior.html). +- A `PriorSet` to handle sets of priors and allows reading in from a standardised prior file (see https://lscsoft.docs.ligo.org/bilby/prior.html). - A standardised file for storing detector data. ### Removed - All chainconsumer dependency as this was causing issues. - diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 0548297f49be461063a6ace3850cf06595a3750b..77a2a990d183279fb00a8719f7226058c631b985 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -28,7 +28,7 @@ $ python setup.py develop which will install `bilby` and, because we used `develop` instead of `install` when you change the code your installed version will automatically be updated. ---- +--- #### Removing previously installed versions @@ -157,11 +157,10 @@ you should: ## Code overview -In this section, we'll give an overview of how the code is structured. This is intended to help orient users and make it easier to contribute. The layout is intended to define the logic of the code and new merge requests should aim to fit within this logic (unless there is a good argument to change it). For example, code which adds a new sampler should not effect the gravitational-wave specific parts of the code. Note that this document is not programatically generated and so may get out of date with time. If you notice something wrong, please open an issue. +In this section, we'll give an overview of how the code is structured. This is intended to help orient users and make it easier to contribute. The layout is intended to define the logic of the code and new merge requests should aim to fit within this logic (unless there is a good argument to change it). For example, code which adds a new sampler should not effect the gravitational-wave specific parts of the code. Note that this document is not programatically generated and so may get out of date with time. If you notice something wrong, please open an issue. ### Bilby Code Layout  Note this layout is not comprehensive, for example only a few example "Priors" are shown. -