From 3c80f8d1fa16a969fcd2232323acd30f1f36f352 Mon Sep 17 00:00:00 2001 From: "Michael J. Williams" Date: Tue, 17 Sep 2024 11:22:32 +0000 Subject: [PATCH 01/30] MAINT: remove GitLab CI file --- .gitlab-ci.yml | 309 ------------------------------------------------- 1 file changed, 309 deletions(-) delete mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml deleted file mode 100644 index e702fa93..00000000 --- a/.gitlab-ci.yml +++ /dev/null @@ -1,309 +0,0 @@ -# This script is an edited version of the example found at -# https://git.ligo.org/lscsoft/example-ci-project/blob/python/.gitlab-ci.yml -# Each 0th-indentation level is a job that will be run within GitLab CI -# The only exception are a short list of reserved keywords -# -# https://docs.gitlab.com/ee/ci/yaml/#gitlab-ci-yml - -# stages is a reserved keyword that defines job dependencies and -# parallelization. each stage runs in parallel but must complete -# before the next stage begins - -stages: - - initial - - test - - docs - - deploy - -# ------------------- Initial stage ------------------------------------------- - -.list-env: &list-env - - PREFIX="$(dirname $(which python))/.." - - if [ -d "${PREFIX}/conda-meta" ]; then - conda list --prefix "${PREFIX}" --show-channel-urls; - else - python -m pip list installed; - fi - -# Check author list is up to date -authors: - stage: initial - image: containers.ligo.org/lscsoft/bilby/v2-bilby-python310 - script: - - python test/check_author_list.py - -# Test containers scripts are up to date -containers: - stage: initial - image: containers.ligo.org/lscsoft/bilby/v2-bilby-python311 - script: - - cd containers - - python write_dockerfiles.py #HACK - # Fail if differences exist. If this fails, you may need to run - # write_dockerfiles.py and commit the changes. - - git diff --exit-code - - cp env-template.yml env.yml - - echo " - python=3.11" >> env.yml - - mamba env create -f env.yml -n test --dry-run - -.test-python: &test-python - stage: initial - image: python - script: - - python -m pip install . - - *list-env - - python -c "import bilby" - - python -c "import bilby.bilby_mcmc" - - python -c "import bilby.core" - - python -c "import bilby.core.prior" - - python -c "import bilby.core.sampler" - - python -c "import bilby.core.utils" - - python -c "import bilby.gw" - - python -c "import bilby.gw.detector" - - python -c "import bilby.gw.eos" - - python -c "import bilby.gw.likelihood" - - python -c "import bilby.gw.sampler" - - python -c "import bilby.hyper" - - python -c "import cli_bilby" - - python test/import_test.py - - for script in $(pip show -f bilby | grep "bin\/" | xargs -I {} basename {}); do - ${script} --help; - done - -basic-3.10: - <<: *test-python - image: python:3.10 - -basic-3.11: - <<: *test-python - image: python:3.11 - -basic-3.12: - <<: *test-python - image: python:3.12 - -.test-samplers-import: &test-samplers-import - stage: initial - script: - - python -m pip install . - - *list-env - - pytest test/test_samplers_import.py -v - -import-samplers-3.10: - <<: *test-samplers-import - image: containers.ligo.org/lscsoft/bilby/v2-bilby-python310 - -import-samplers-3.11: - <<: *test-samplers-import - image: containers.ligo.org/lscsoft/bilby/v2-bilby-python311 - -import-samplers-3.12: - <<: *test-samplers-import - image: containers.ligo.org/lscsoft/bilby/v2-bilby-python312 - -.precommits: &precommits - stage: initial - script: - - source activate $PYVERSION - - mkdir -p $CACHE_DIR - - pip install --upgrade pip - - pip --cache-dir=$CACHE_DIR install --upgrade bilby - - pip --cache-dir=$CACHE_DIR install . - # Run precommits (flake8, spellcheck, isort, no merge conflicts, etc) - - pre-commit run --all-files --verbose --show-diff-on-failure - -precommits-py3.11: - <<: *precommits - image: containers.ligo.org/lscsoft/bilby/v2-bilby-python311 - variables: - CACHE_DIR: ".pip311" - PYVERSION: "python311" - -install: - stage: initial - parallel: - matrix: - - EXTRA: [gw, mcmc, all] - image: containers.ligo.org/lscsoft/bilby/v2-bilby-python311 - script: - - pip install .[$EXTRA] - -# ------------------- Test stage ------------------------------------------- - -.unit-tests: &unit-test - stage: test - script: - - python -m pip install . - - *list-env - - - pytest --cov=bilby --durations 10 - -python-3.10: - <<: *unit-test - needs: ["basic-3.10"] - image: containers.ligo.org/lscsoft/bilby/v2-bilby-python310 - -python-3.11: - <<: *unit-test - needs: ["basic-3.11", "precommits-py3.11"] - image: containers.ligo.org/lscsoft/bilby/v2-bilby-python311 - after_script: - - coverage html - - coverage xml - coverage: '/(?i)total.*? (100(?:\.0+)?\%|[1-9]?\d(?:\.\d+)?\%)$/' - artifacts: - reports: - coverage_report: - coverage_format: cobertura - path: coverage.xml - paths: - - htmlcov/ - expire_in: 30 days - -python-3.12: - <<: *unit-test - needs: ["basic-3.12"] - image: containers.ligo.org/lscsoft/bilby/v2-bilby-python312 - -.test-sampler: &test-sampler - stage: test - script: - - python -m pip install .[all] - - *list-env - - pytest test/integration/sampler_run_test.py --durations 10 -v - -python-3.10-samplers: - <<: *test-sampler - needs: ["basic-3.10"] - image: containers.ligo.org/lscsoft/bilby/v2-bilby-python310 - -python-3.11-samplers: - <<: *test-sampler - needs: ["basic-3.11", "precommits-py3.11"] - image: containers.ligo.org/lscsoft/bilby/v2-bilby-python311 - -python-3.12-samplers: - <<: *test-sampler - needs: ["basic-3.12"] - image: containers.ligo.org/lscsoft/bilby/v2-bilby-python312 - -integration-tests-python-3.11: - stage: test - image: containers.ligo.org/lscsoft/bilby/v2-bilby-python311 - needs: ["basic-3.11", "precommits-py3.11"] - only: - - schedules - script: - - python -m pip install . - - *list-env - # Run tests which are only done on schedule - - pytest test/integration/example_test.py - -.plotting: &plotting - stage: test - only: - - schedules - script: - - python -m pip install . - - *list-env - - pytest test/gw/plot_test.py - -plotting-python-3.10: - <<: *plotting - image: containers.ligo.org/lscsoft/bilby/v2-bilby-python310 - needs: ["basic-3.10"] - -plotting-python-3.11: - <<: *plotting - image: containers.ligo.org/lscsoft/bilby/v2-bilby-python311 - needs: ["basic-3.11", "precommits-py3.11"] - -plotting-python-3.12: - <<: *plotting - image: containers.ligo.org/lscsoft/bilby/v2-bilby-python312 - needs: ["basic-3.12"] - -# ------------------- Docs stage ------------------------------------------- - -docs: - stage: docs - image: containers.ligo.org/lscsoft/bilby/v2-bilby-python311 - before_script: - - python -m ipykernel install - script: - # Make the documentation - - python -m pip install . - - python -m pip install myst_parser # only for testing purposes - remove once test image is generating correctly - - cd examples/tutorials - - jupyter nbconvert --to notebook --execute *.ipynb --output-dir ../../docs - - cd ../../docs - - make clean - - make html - - artifacts: - paths: - - docs/_build/html/ - -# ------------------- Deploy stage ------------------------------------------- - -pages: - stage: deploy - needs: ["docs", "python-3.11"] - script: - - mkdir public/ - - mv htmlcov/ public/ - - mv docs/_build/html/* public/ - artifacts: - paths: - - public - expire_in: 30 days - only: - - master - -.build-container: &build-container - stage: deploy - image: docker:20.10.23 - needs: ["containers"] - rules: - - if: $CI_PIPELINE_SOURCE == "merge_request_event" - changes: - compare_to: 'refs/heads/main' - paths: - - containers/* - when: manual - - if: $CI_PIPELINE_SOURCE == "schedule" - script: - - cd containers - - docker login -u $CI_REGISTRY_USER -p $CI_REGISTRY_PASSWORD $CI_REGISTRY - - cp v3-dockerfile-test-suite-$PYVERSION Dockerfile - - docker build --tag v3-bilby-$PYVERSION . - - docker image tag v3-bilby-$PYVERSION containers.ligo.org/lscsoft/bilby/v2-bilby-$PYVERSION:latest - - docker image push containers.ligo.org/lscsoft/bilby/v2-bilby-$PYVERSION:latest - -build-python310-container: - <<: *build-container - variables: - PYVERSION: "python310" - -build-python311-container: - <<: *build-container - variables: - PYVERSION: "python311" - -build-python312-container: - <<: *build-container - variables: - PYVERSION: "python312" - -pypi-release: - stage: deploy - image: containers.ligo.org/lscsoft/bilby/v2-bilby-python310 - variables: - TWINE_USERNAME: $PYPI_USERNAME - TWINE_PASSWORD: $PYPI_PASSWORD - before_script: - - python -m build --sdist --wheel --outdir dist/ . - script: - - twine upload dist/* - only: - - tags From 8e79c04d8a1f76d2b97206d3633daa334768acc1 Mon Sep 17 00:00:00 2001 From: "Michael J. Williams" Date: Tue, 17 Sep 2024 11:22:43 +0000 Subject: [PATCH 02/30] MAINT: change URL --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 5b619120..c9c00e2e 100644 --- a/setup.py +++ b/setup.py @@ -41,7 +41,7 @@ def readfile(filename): description="A user-friendly Bayesian inference library", long_description=long_description, long_description_content_type="text/x-rst", - url="https://git.ligo.org/lscsoft/bilby", + url="https://github.com/bilby-dev/bilby", author="Greg Ashton, Moritz Huebner, Paul Lasky, Colm Talbot", author_email="paul.lasky@monash.edu", license="MIT", From f036d0c6d6b1dddeda1f9bd80762b3abb3620590 Mon Sep 17 00:00:00 2001 From: "Michael J. Williams" Date: Tue, 17 Sep 2024 11:26:36 +0000 Subject: [PATCH 03/30] MAINT: update URLs --- CHANGELOG.md | 56 ++++++++++++++++++++++----------------------- CONTRIBUTING.md | 4 ++-- README.rst | 10 ++++---- examples/README.rst | 2 +- 4 files changed, 36 insertions(+), 36 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 564b6a37..965b2ff8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1066,31 +1066,31 @@ First `pip` installable version https://pypi.org/project/BILBY/ . - All chainconsumer dependency as this was causing issues. -[Unreleased]: https://git.ligo.org/lscsoft/bilby/-/compare/v2.3.0...master -[2.3.0]: https://git.ligo.org/lscsoft/bilby/-/compare/v2.2.3...v2.3.0 -[2.2.3]: https://git.ligo.org/lscsoft/bilby/-/compare/v2.2.2...v2.2.3 -[2.2.2]: https://git.ligo.org/lscsoft/bilby/-/compare/v2.2.1...v2.2.2 -[2.2.1]: https://git.ligo.org/lscsoft/bilby/-/compare/v2.2.0...v2.2.1 -[2.2.0]: https://git.ligo.org/lscsoft/bilby/-/compare/v2.1.2...v2.2.0 -[2.1.2]: https://git.ligo.org/lscsoft/bilby/-/compare/v2.1.1...v2.1.2 -[2.1.1]: https://git.ligo.org/lscsoft/bilby/-/compare/v2.1.0...v2.1.1 -[2.1.0]: https://git.ligo.org/lscsoft/bilby/-/compare/v2.0.2...v2.1.0 -[2.0.2]: https://git.ligo.org/lscsoft/bilby/-/compare/v2.0.1...v2.0.2 -[2.0.1]: https://git.ligo.org/lscsoft/bilby/-/compare/v2.0.0...v2.0.1 -[2.0.0]: https://git.ligo.org/lscsoft/bilby/-/compare/v1.4.1...v2.0.0 -[1.4.1]: https://git.ligo.org/lscsoft/bilby/-/compare/v1.4.0...v1.4.1 -[1.4.0]: https://git.ligo.org/lscsoft/bilby/-/compare/1.3.0...v1.4.0 -[1.3.0]: https://git.ligo.org/lscsoft/bilby/-/compare/1.2.1...1.3.0 -[1.2.1]: https://git.ligo.org/lscsoft/bilby/-/compare/1.2.0...1.2.1 -[1.2.0]: https://git.ligo.org/lscsoft/bilby/-/compare/1.1.5...1.2.0 -[1.1.5]: https://git.ligo.org/lscsoft/bilby/-/compare/1.1.4...1.1.5 -[1.1.4]: https://git.ligo.org/lscsoft/bilby/-/compare/1.1.2...1.1.4 -[1.1.3]: https://git.ligo.org/lscsoft/bilby/-/compare/1.1.2...1.1.3 -[1.1.2]: https://git.ligo.org/lscsoft/bilby/-/compare/1.1.1...1.1.2 -[1.1.1]: https://git.ligo.org/lscsoft/bilby/-/compare/1.1.0...1.1.1 -[1.1.0]: https://git.ligo.org/lscsoft/bilby/-/compare/1.0.4...1.1.0 -[1.0.4]: https://git.ligo.org/lscsoft/bilby/-/compare/1.0.3...1.0.4 -[1.0.3]: https://git.ligo.org/lscsoft/bilby/-/compare/1.0.2...1.0.3 -[1.0.2]: https://git.ligo.org/lscsoft/bilby/-/compare/1.0.1...1.0.2 -[1.0.1]: https://git.ligo.org/lscsoft/bilby/-/compare/1.0.0...1.0.1 -[1.0.0]: https://git.ligo.org/lscsoft/bilby/-/compare/0.6.9...1.0.0 +[Unreleased]: https://github.com/bilby-dev/bilby/compare/v2.3.0...master +[2.3.0]: https://github.com/bilby-dev/bilby/compare/v2.2.3...v2.3.0 +[2.2.3]: https://github.com/bilby-dev/bilby/compare/v2.2.2...v2.2.3 +[2.2.2]: https://github.com/bilby-dev/bilby/compare/v2.2.1...v2.2.2 +[2.2.1]: https://github.com/bilby-dev/bilby/compare/v2.2.0...v2.2.1 +[2.2.0]: https://github.com/bilby-dev/bilby/compare/v2.1.2...v2.2.0 +[2.1.2]: https://github.com/bilby-dev/bilby/compare/v2.1.1...v2.1.2 +[2.1.1]: https://github.com/bilby-dev/bilby/compare/v2.1.0...v2.1.1 +[2.1.0]: https://github.com/bilby-dev/bilby/compare/v2.0.2...v2.1.0 +[2.0.2]: https://github.com/bilby-dev/bilby/compare/v2.0.1...v2.0.2 +[2.0.1]: https://github.com/bilby-dev/bilby/compare/v2.0.0...v2.0.1 +[2.0.0]: https://github.com/bilby-dev/bilby/compare/v1.4.1...v2.0.0 +[1.4.1]: https://github.com/bilby-dev/bilby/compare/v1.4.0...v1.4.1 +[1.4.0]: https://github.com/bilby-dev/bilby/compare/1.3.0...v1.4.0 +[1.3.0]: https://github.com/bilby-dev/bilby/compare/1.2.1...1.3.0 +[1.2.1]: https://github.com/bilby-dev/bilby/compare/1.2.0...1.2.1 +[1.2.0]: https://github.com/bilby-dev/bilby/compare/1.1.5...1.2.0 +[1.1.5]: https://github.com/bilby-dev/bilby/compare/1.1.4...1.1.5 +[1.1.4]: https://github.com/bilby-dev/bilby/compare/1.1.2...1.1.4 +[1.1.3]: https://github.com/bilby-dev/bilby/compare/1.1.2...1.1.3 +[1.1.2]: https://github.com/bilby-dev/bilby/compare/1.1.1...1.1.2 +[1.1.1]: https://github.com/bilby-dev/bilby/compare/1.1.0...1.1.1 +[1.1.0]: https://github.com/bilby-dev/bilby/compare/1.0.4...1.1.0 +[1.0.4]: https://github.com/bilby-dev/bilby/compare/1.0.3...1.0.4 +[1.0.3]: https://github.com/bilby-dev/bilby/compare/1.0.2...1.0.3 +[1.0.2]: https://github.com/bilby-dev/bilby/compare/1.0.1...1.0.2 +[1.0.1]: https://github.com/bilby-dev/bilby/compare/1.0.0...1.0.1 +[1.0.0]: https://github.com/bilby-dev/bilby/compare/0.6.9...1.0.0 diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 9d151d79..3b38ef3b 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -314,10 +314,10 @@ review the change. ### Licence When submitting a MR, please don't include any license information in your code. Our repository is -[licensed](https://git.ligo.org/lscsoft/bilby/blob/master/LICENSE.md). When +[licensed](https://github.com/bilby-dev/bilby/blob/master/LICENSE.md). When submitting your merge request, we will assume you have read and agreed to the terms of [the -license](https://git.ligo.org/lscsoft/bilby/blob/master/LICENSE.md). +license](https://github.com/bilby-dev/bilby/blob/master/LICENSE.md). ### Removing previously installed versions diff --git a/README.rst b/README.rst index d14c44fe..036f5d98 100644 --- a/README.rst +++ b/README.rst @@ -17,13 +17,13 @@ If you need help, find an issue, or just have a question/suggestion you can - Join our `Slack workspace `__ (you may need to email the support desk to request an invite) - Email our support desk: contact+lscsoft-bilby-1846-issue-@support.ligo.org - Ask questions (or search through other users questions and answers) on `StackOverflow `__ using the bilby tag -- For www.git.ligo.org users, submit issues directly through `the issue tracker `__ +- For www.git.ligo.org users, submit issues directly through `the issue tracker `__ - For www.chat.ligo.org users, join the `#bilby-help `__ or `#bilby-devel `__ channels We encourage you to contribute to the development of bilby. This is done via a merge request. For help in creating a merge request, see `this page `__ or contact -us directly. For advice on contributing, see `the contributing guide `__. +us directly. For advice on contributing, see `the contributing guide `__. -------------- @@ -32,9 +32,9 @@ Citation guide Please refer to the `Acknowledging/citing bilby guide `__. -.. |pipeline status| image:: https://git.ligo.org/lscsoft/bilby/badges/master/pipeline.svg - :target: https://git.ligo.org/lscsoft/bilby/commits/master -.. |coverage report| image:: https://git.ligo.org/lscsoft/bilby/badges/master/coverage.svg +.. |pipeline status| image:: https://github.com/bilby-dev/bilby/badges/master/pipeline.svg + :target: https://github.com/bilby-dev/bilby/commits/master +.. |coverage report| image:: https://github.com/bilby-dev/bilby/badges/master/coverage.svg :target: https://lscsoft.docs.ligo.org/bilby/htmlcov/ .. |pypi| image:: https://badge.fury.io/py/bilby.svg :target: https://pypi.org/project/bilby/ diff --git a/examples/README.rst b/examples/README.rst index 59703acb..7f09c744 100644 --- a/examples/README.rst +++ b/examples/README.rst @@ -10,5 +10,5 @@ notebooks. The :code:`basic_tutorial.py` example discussed in arXiv:1811.02042 has been renamed to `gw_examples/injection_examples/fast_tutorial.py -`_. +`_. From dd75c696539e7eced36ddbb38d42eec7fcad1e41 Mon Sep 17 00:00:00 2001 From: "Michael J. Williams" Date: Tue, 17 Sep 2024 11:31:27 +0000 Subject: [PATCH 04/30] MAINT: update more urls --- CONTRIBUTING.md | 6 +++--- bilby/__init__.py | 2 +- docs/conf.py | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 3b38ef3b..c08f89ab 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -189,7 +189,7 @@ do this. All the code lives in a git repository (for a short introduction to git, see [this tutorial](https://docs.gitlab.com/ee/gitlab-basics/start-using-git.html)) -which is hosted here: https://git.ligo.org/lscsoft/bilby. If you haven't +which is hosted here: https://github.com/bilby-dev/bilby. If you haven't already, you should [fork](https://docs.gitlab.com/ee/gitlab-basics/fork-project.html) the repository and clone your fork, i.e., on your local machine run @@ -231,7 +231,7 @@ have been merged since the time you created your fork, or last updated: containing a local copy of the code: ```bash -$ git remote add lscsoft https://git.ligo.org/lscsoft/bilby +$ git remote add lscsoft https://github.com/bilby-dev/bilby ``` You can see which "remotes" you have available by running @@ -299,7 +299,7 @@ main (`lscsoft`) repository. After you have pushed your new feature branch to `origin`, you should find a new button on the [bilby repository home -page](https://git.ligo.org/lscsoft/bilby) inviting you to create a Merge +page](https://github.com/bilby-dev/bilby) inviting you to create a Merge Request out of your newly pushed branch. You should click the button, and proceed to fill in the title and description boxes on the MR page. If you are still working on the merge request and don’t want it to be merged accidentally, diff --git a/bilby/__init__.py b/bilby/__init__.py index 97a988c8..6cd837f6 100644 --- a/bilby/__init__.py +++ b/bilby/__init__.py @@ -9,7 +9,7 @@ binary coalescence events in interferometric data, but it can also be used for more general problems. -The code, and many examples are hosted at https://git.ligo.org/lscsoft/bilby. +The code, and many examples are hosted at https://github.com/bilby-dev/bilby. For installation instructions see https://lscsoft.docs.ligo.org/bilby/installation.html. diff --git a/docs/conf.py b/docs/conf.py index e4641bc4..768e7177 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -41,7 +41,7 @@ def git_upstream_url(): if url[:5] != "https": url = f"https://{url}" except subprocess.CalledProcessError: - url = "https://git.ligo.org/lscsoft/bilby" + url = "https://github.com/bilby-dev/bilby" return url From 474c13dabf943dd74f3407061bece27b5f7d0237 Mon Sep 17 00:00:00 2001 From: "Michael J. Williams" Date: Tue, 17 Sep 2024 11:36:46 +0000 Subject: [PATCH 05/30] MAINT: more URLs --- CHANGELOG.md | 2 +- docs/installation.txt | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 965b2ff8..9dbf7046 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -519,7 +519,7 @@ Version 1.0 release of bilby ### Changes - Minor bug fixes and typo changes only from 0.6.9, see -git.ligo.org/lscsoft/bilby/-/merge_requests?scope=all&utf8=%E2%9C%93&state=merged&milestone_title=1.0.0 +github.com/bilby-dev/bilby/merge_requests?scope=all&utf8=%E2%9C%93&state=merged&milestone_title=1.0.0 for details ## [0.6.9] 2020-05-21 diff --git a/docs/installation.txt b/docs/installation.txt index 0583ce87..bbece99c 100644 --- a/docs/installation.txt +++ b/docs/installation.txt @@ -86,7 +86,7 @@ try to run the examples. .. code-block:: console - $ git clone https://git.ligo.org/lscsoft/bilby.git + $ git clone git@github.com:bilby-dev/bilby.git .. note:: You may be use to using :code:`$ python setup.py install` to install software @@ -99,11 +99,11 @@ Installing optional requirements ================================ The `requirements.txt -`_ is a +`_ is a minimal set of requirements for using :code:`bilby`. Additionally, we provide: 1. The file `optional_requirements.txt -`_ +`_ which you should install if you plan to use :code:`bilby` for gravitational-wave data analysis. From 8237212fb74bfe98f2100d9608dda7a2d18e33d6 Mon Sep 17 00:00:00 2001 From: "Michael J. Williams" Date: Tue, 17 Sep 2024 11:36:55 +0000 Subject: [PATCH 06/30] MAINT: change URL --- bilby/core/sampler/dynesty.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/bilby/core/sampler/dynesty.py b/bilby/core/sampler/dynesty.py index f1617f1e..e4f3f495 100644 --- a/bilby/core/sampler/dynesty.py +++ b/bilby/core/sampler/dynesty.py @@ -892,7 +892,7 @@ def plot_current_state(self): except Exception as e: logger.warning( f"Unexpected error {e} in dynesty plotting. " - "Please report at git.ligo.org/lscsoft/bilby/-/issues" + "Please report at github.com/bilby-dev/bilby/issues" ) finally: plt.close("all") @@ -918,7 +918,7 @@ def plot_current_state(self): except Exception as e: logger.warning( f"Unexpected error {e} in dynesty plotting. " - "Please report at git.ligo.org/lscsoft/bilby/-/issues" + "Please report at github.com/bilby-dev/bilby/-/issues" ) finally: plt.close("all") @@ -940,7 +940,7 @@ def plot_current_state(self): except Exception as e: logger.warning( f"Unexpected error {e} in dynesty plotting. " - "Please report at git.ligo.org/lscsoft/bilby/-/issues" + "Please report at github.com/bilby-dev/bilby/-/issues" ) finally: plt.close("all") @@ -957,7 +957,7 @@ def plot_current_state(self): except Exception as e: logger.warning( f"Unexpected error {e} in dynesty plotting. " - "Please report at git.ligo.org/lscsoft/bilby/-/issues" + "Please report at github.com/bilby-dev/bilby/-/issues" ) finally: plt.close("all") From 473849798a820bf7b78b8d3042f4434e42e6a156 Mon Sep 17 00:00:00 2001 From: "Michael J. Williams" Date: Tue, 17 Sep 2024 11:39:05 +0000 Subject: [PATCH 07/30] MAINT: remove /-/ --- bilby/core/sampler/dynesty.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bilby/core/sampler/dynesty.py b/bilby/core/sampler/dynesty.py index e4f3f495..791ae4e5 100644 --- a/bilby/core/sampler/dynesty.py +++ b/bilby/core/sampler/dynesty.py @@ -918,7 +918,7 @@ def plot_current_state(self): except Exception as e: logger.warning( f"Unexpected error {e} in dynesty plotting. " - "Please report at github.com/bilby-dev/bilby/-/issues" + "Please report at github.com/bilby-dev/bilbyissues" ) finally: plt.close("all") @@ -940,7 +940,7 @@ def plot_current_state(self): except Exception as e: logger.warning( f"Unexpected error {e} in dynesty plotting. " - "Please report at github.com/bilby-dev/bilby/-/issues" + "Please report at github.com/bilby-dev/bilbyissues" ) finally: plt.close("all") @@ -957,7 +957,7 @@ def plot_current_state(self): except Exception as e: logger.warning( f"Unexpected error {e} in dynesty plotting. " - "Please report at github.com/bilby-dev/bilby/-/issues" + "Please report at github.com/bilby-dev/bilbyissues" ) finally: plt.close("all") From ad97ca983e0ed94c7a3a64c29de834c79f222dd6 Mon Sep 17 00:00:00 2001 From: "Michael J. Williams" Date: Tue, 17 Sep 2024 11:40:33 +0000 Subject: [PATCH 08/30] MAINT: remove /-/ --- docs/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/conf.py b/docs/conf.py index 768e7177..b2b3ffa5 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -247,4 +247,4 @@ def linkcode_resolve(domain, info): except Exception: return - return f"{GITURL}/-/tree/{GITHASH}/{file}#L{start}-L{end}" + return f"{GITURL}/tree/{GITHASH}/{file}#L{start}-L{end}" From 293d259116f1344880ce7dd8b7732e03defa2b4b Mon Sep 17 00:00:00 2001 From: "Michael J. Williams" Date: Tue, 17 Sep 2024 12:32:39 +0000 Subject: [PATCH 09/30] MAINT: add missing slash --- bilby/core/sampler/dynesty.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bilby/core/sampler/dynesty.py b/bilby/core/sampler/dynesty.py index 791ae4e5..539531c6 100644 --- a/bilby/core/sampler/dynesty.py +++ b/bilby/core/sampler/dynesty.py @@ -918,7 +918,7 @@ def plot_current_state(self): except Exception as e: logger.warning( f"Unexpected error {e} in dynesty plotting. " - "Please report at github.com/bilby-dev/bilbyissues" + "Please report at github.com/bilby-dev/bilby/issues" ) finally: plt.close("all") @@ -940,7 +940,7 @@ def plot_current_state(self): except Exception as e: logger.warning( f"Unexpected error {e} in dynesty plotting. " - "Please report at github.com/bilby-dev/bilbyissues" + "Please report at github.com/bilby-dev/bilby/issues" ) finally: plt.close("all") @@ -957,7 +957,7 @@ def plot_current_state(self): except Exception as e: logger.warning( f"Unexpected error {e} in dynesty plotting. " - "Please report at github.com/bilby-dev/bilbyissues" + "Please report at github.com/bilby-dev/bilby/issues" ) finally: plt.close("all") From a4beb17dcc5eaa180aad9f8ef014eedfba26b9cc Mon Sep 17 00:00:00 2001 From: "Michael J. Williams" Date: Tue, 17 Sep 2024 12:42:31 +0000 Subject: [PATCH 10/30] DOC: update URLs --- README.rst | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/README.rst b/README.rst index 036f5d98..ecf78c25 100644 --- a/README.rst +++ b/README.rst @@ -9,15 +9,14 @@ Fulfilling all your Bayesian dreams. Online material to help you get started: -- `Installation instructions `__ -- `Documentation `__ +- `Installation instructions `__ +- `Documentation `__ If you need help, find an issue, or just have a question/suggestion you can - Join our `Slack workspace `__ (you may need to email the support desk to request an invite) -- Email our support desk: contact+lscsoft-bilby-1846-issue-@support.ligo.org - Ask questions (or search through other users questions and answers) on `StackOverflow `__ using the bilby tag -- For www.git.ligo.org users, submit issues directly through `the issue tracker `__ +- Submit issues directly through `the issue tracker `__ - For www.chat.ligo.org users, join the `#bilby-help `__ or `#bilby-devel `__ channels We encourage you to contribute to the development of bilby. This is done via a merge request. For From 5c347400600079da74e1e09737b3c831364e49cf Mon Sep 17 00:00:00 2001 From: "Michael J. Williams" Date: Tue, 17 Sep 2024 12:45:16 +0000 Subject: [PATCH 11/30] MAINT: fix pipeline status --- README.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.rst b/README.rst index ecf78c25..4541ff08 100644 --- a/README.rst +++ b/README.rst @@ -31,7 +31,7 @@ Citation guide Please refer to the `Acknowledging/citing bilby guide `__. -.. |pipeline status| image:: https://github.com/bilby-dev/bilby/badges/master/pipeline.svg +.. |pipeline status| image:: https://github.com/bilby-dev/bilby/actions/workflows/unit-tests.yml/badge.svg :target: https://github.com/bilby-dev/bilby/commits/master .. |coverage report| image:: https://github.com/bilby-dev/bilby/badges/master/coverage.svg :target: https://lscsoft.docs.ligo.org/bilby/htmlcov/ From f2b0d62349e3fa8e8b060f439a90c2976d046ed9 Mon Sep 17 00:00:00 2001 From: "Michael J. Williams" Date: Tue, 17 Sep 2024 12:58:19 +0000 Subject: [PATCH 12/30] DOC: update contributing --- README.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.rst b/README.rst index 4541ff08..ed0c68da 100644 --- a/README.rst +++ b/README.rst @@ -20,8 +20,8 @@ If you need help, find an issue, or just have a question/suggestion you can - For www.chat.ligo.org users, join the `#bilby-help `__ or `#bilby-devel `__ channels We encourage you to contribute to the development of bilby. This is done via a merge request. For -help in creating a merge request, see `this page -`__ or contact +help in creating a pull request, see `this page +`__ or contact us directly. For advice on contributing, see `the contributing guide `__. From 7cdf21ebf51b756f87465bbe27d9ea287b550baf Mon Sep 17 00:00:00 2001 From: "Michael J. Williams" Date: Tue, 17 Sep 2024 13:07:33 +0000 Subject: [PATCH 13/30] DOC: add confidential issue instructions --- README.rst | 1 + 1 file changed, 1 insertion(+) diff --git a/README.rst b/README.rst index ed0c68da..130e4d58 100644 --- a/README.rst +++ b/README.rst @@ -18,6 +18,7 @@ If you need help, find an issue, or just have a question/suggestion you can - Ask questions (or search through other users questions and answers) on `StackOverflow `__ using the bilby tag - Submit issues directly through `the issue tracker `__ - For www.chat.ligo.org users, join the `#bilby-help `__ or `#bilby-devel `__ channels +- For LVK-specific issues, please open `a confidential issue on bilby_pipe `__ We encourage you to contribute to the development of bilby. This is done via a merge request. For help in creating a pull request, see `this page From 8ed3f9e6b3d9001ae07a08f94fcbd576751bad72 Mon Sep 17 00:00:00 2001 From: "Michael J. Williams" Date: Tue, 17 Sep 2024 14:13:59 +0000 Subject: [PATCH 14/30] DOC: tmp fix for milestone --- CHANGELOG.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9dbf7046..9185793f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -518,9 +518,7 @@ Version 1.0.1 release of bilby Version 1.0 release of bilby ### Changes -- Minor bug fixes and typo changes only from 0.6.9, see -github.com/bilby-dev/bilby/merge_requests?scope=all&utf8=%E2%9C%93&state=merged&milestone_title=1.0.0 -for details +- Minor bug fixes and typo changes only from 0.6.9, see the [1.0.0 milestone](https://git.ligo.org/lscsoft/bilby/-/merge_requests?scope=all&state=all&milestone_title=1.0.0) for details ## [0.6.9] 2020-05-21 ### Changes From 629a1457764d3e0a966bc771d55c384736bf976d Mon Sep 17 00:00:00 2001 From: "Michael J. Williams" Date: Tue, 17 Sep 2024 14:17:50 +0000 Subject: [PATCH 15/30] MAINT: update doc links --- CHANGELOG.md | 4 ++-- README.rst | 2 +- bilby/__init__.py | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9185793f..78f8de5b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1030,7 +1030,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://lscsoft.docs.ligo.org/bilby/transient-gw-data.html) +- Adds documentation on setting data (https://bilby-dev.github.io/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. @@ -1057,7 +1057,7 @@ 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://lscsoft.docs.ligo.org/bilby/prior.html). +- A `PriorSet` to handle sets of priors and allows reading in from a standardised prior file (see https://bilby-dev.github.io/bilby/prior.html). - A standardised file for storing detector data. ### Removed diff --git a/README.rst b/README.rst index 130e4d58..26927bd6 100644 --- a/README.rst +++ b/README.rst @@ -30,7 +30,7 @@ us directly. For advice on contributing, see `the contributing guide `__. +Please refer to the `Acknowledging/citing bilby guide `__. .. |pipeline status| image:: https://github.com/bilby-dev/bilby/actions/workflows/unit-tests.yml/badge.svg :target: https://github.com/bilby-dev/bilby/commits/master diff --git a/bilby/__init__.py b/bilby/__init__.py index 6cd837f6..fb0abff0 100644 --- a/bilby/__init__.py +++ b/bilby/__init__.py @@ -11,7 +11,7 @@ The code, and many examples are hosted at https://github.com/bilby-dev/bilby. For installation instructions see -https://lscsoft.docs.ligo.org/bilby/installation.html. +https://bilby-dev.github.io/bilby/installation.html. """ From 7c47a51ec05f892df95c12f918c70a010b14335f Mon Sep 17 00:00:00 2001 From: "Michael J. Williams" Date: Tue, 17 Sep 2024 14:24:59 +0000 Subject: [PATCH 16/30] MAINT: change branch to main --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 78f8de5b..b1a6be31 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1064,7 +1064,7 @@ First `pip` installable version https://pypi.org/project/BILBY/ . - All chainconsumer dependency as this was causing issues. -[Unreleased]: https://github.com/bilby-dev/bilby/compare/v2.3.0...master +[Unreleased]: https://github.com/bilby-dev/bilby/compare/v2.3.0...main [2.3.0]: https://github.com/bilby-dev/bilby/compare/v2.2.3...v2.3.0 [2.2.3]: https://github.com/bilby-dev/bilby/compare/v2.2.2...v2.2.3 [2.2.2]: https://github.com/bilby-dev/bilby/compare/v2.2.1...v2.2.2 From ae4a7ee3fb1921f1d2a0cb9975c5016b9c7ae3a4 Mon Sep 17 00:00:00 2001 From: "Michael J. Williams" Date: Thu, 19 Sep 2024 09:34:57 +0100 Subject: [PATCH 17/30] Update README.rst Co-authored-by: Colm Talbot --- README.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.rst b/README.rst index 26927bd6..56268a74 100644 --- a/README.rst +++ b/README.rst @@ -20,7 +20,7 @@ If you need help, find an issue, or just have a question/suggestion you can - For www.chat.ligo.org users, join the `#bilby-help `__ or `#bilby-devel `__ channels - For LVK-specific issues, please open `a confidential issue on bilby_pipe `__ -We encourage you to contribute to the development of bilby. This is done via a merge request. For +We encourage you to contribute to the development of bilby. This is done via pull request. For help in creating a pull request, see `this page `__ or contact us directly. For advice on contributing, see `the contributing guide `__. From d7c1b9dcf8dc9c590c9da3327c36044825257dd3 Mon Sep 17 00:00:00 2001 From: "Michael J. Williams" Date: Thu, 19 Sep 2024 09:35:04 +0100 Subject: [PATCH 18/30] Update README.rst Co-authored-by: Colm Talbot --- README.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.rst b/README.rst index 56268a74..1d5d8812 100644 --- a/README.rst +++ b/README.rst @@ -9,7 +9,7 @@ Fulfilling all your Bayesian dreams. Online material to help you get started: -- `Installation instructions `__ +- `Installation instructions `__ - `Documentation `__ If you need help, find an issue, or just have a question/suggestion you can From 0fca79c0cd36d0e062b2c277f24305ca5cc14dfd Mon Sep 17 00:00:00 2001 From: "Michael J. Williams" Date: Thu, 19 Sep 2024 09:35:13 +0100 Subject: [PATCH 19/30] Update README.rst Co-authored-by: Colm Talbot --- README.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.rst b/README.rst index 1d5d8812..d9726866 100644 --- a/README.rst +++ b/README.rst @@ -17,7 +17,7 @@ If you need help, find an issue, or just have a question/suggestion you can - Join our `Slack workspace `__ (you may need to email the support desk to request an invite) - Ask questions (or search through other users questions and answers) on `StackOverflow `__ using the bilby tag - Submit issues directly through `the issue tracker `__ -- For www.chat.ligo.org users, join the `#bilby-help `__ or `#bilby-devel `__ channels +- For chat.ligo.org users, join the `#bilby-help `__ or `#bilby-devel `__ channels - For LVK-specific issues, please open `a confidential issue on bilby_pipe `__ We encourage you to contribute to the development of bilby. This is done via pull request. For From f846f056d0c7f9c681d855075416d5ccdba090b5 Mon Sep 17 00:00:00 2001 From: mj-will Date: Thu, 19 Sep 2024 12:29:29 +0100 Subject: [PATCH 20/30] MAINT: change URLs --- CHANGELOG.md | 2 +- README.rst | 2 +- docs/basics-of-parameter-estimation.txt | 2 +- docs/bilby-output.txt | 2 +- ...inary-coalescence-parameter-estimation.txt | 4 +-- docs/examples.txt | 32 +++++++++---------- docs/gw_prior.txt | 2 +- docs/likelihood.txt | 6 ++-- docs/plugins.txt | 4 +-- docs/samplers.txt | 4 +-- 10 files changed, 30 insertions(+), 30 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b1a6be31..4c9c2f0b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -518,7 +518,7 @@ Version 1.0.1 release of bilby Version 1.0 release of bilby ### Changes -- Minor bug fixes and typo changes only from 0.6.9, see the [1.0.0 milestone](https://git.ligo.org/lscsoft/bilby/-/merge_requests?scope=all&state=all&milestone_title=1.0.0) for details +- Minor bug fixes and typo changes only from 0.6.9, see the [1.0.0 milestone](https://github.com/bilby-dev/bilby/-/merge_requests?scope=all&state=all&milestone_title=1.0.0) for details ## [0.6.9] 2020-05-21 ### Changes diff --git a/README.rst b/README.rst index d9726866..9adf5bc3 100644 --- a/README.rst +++ b/README.rst @@ -18,7 +18,7 @@ If you need help, find an issue, or just have a question/suggestion you can - Ask questions (or search through other users questions and answers) on `StackOverflow `__ using the bilby tag - Submit issues directly through `the issue tracker `__ - For chat.ligo.org users, join the `#bilby-help `__ or `#bilby-devel `__ channels -- For LVK-specific issues, please open `a confidential issue on bilby_pipe `__ +- For LVK-specific issues, please open `a confidential issue on bilby_pipe `__ We encourage you to contribute to the development of bilby. This is done via pull request. For help in creating a pull request, see `this page diff --git a/docs/basics-of-parameter-estimation.txt b/docs/basics-of-parameter-estimation.txt index 35476d90..14a85145 100644 --- a/docs/basics-of-parameter-estimation.txt +++ b/docs/basics-of-parameter-estimation.txt @@ -81,7 +81,7 @@ The code In the following example, also available under `examples/core_examples/linear_regression.py -`_ +`_ we will step through the process of generating some simulated data, writing a likelihood and prior, and running nested sampling using `bilby`. diff --git a/docs/bilby-output.txt b/docs/bilby-output.txt index b0d8f2a6..5e473c2a 100644 --- a/docs/bilby-output.txt +++ b/docs/bilby-output.txt @@ -99,5 +99,5 @@ Visualising the results ----------------------- Bilby also provides some useful built-in plotting tools. Some examples on how to visualise results using these tools (and how to extend them) are shown in -one of the tutorials at `visualising_the_results.ipynb `_. +one of the tutorials at `visualising_the_results.ipynb `_. diff --git a/docs/compact-binary-coalescence-parameter-estimation.txt b/docs/compact-binary-coalescence-parameter-estimation.txt index 22a04394..facd9258 100644 --- a/docs/compact-binary-coalescence-parameter-estimation.txt +++ b/docs/compact-binary-coalescence-parameter-estimation.txt @@ -3,7 +3,7 @@ Compact binary coalescence parameter estimation =============================================== In `this example -`_, +`_, we demonstrate how to generate simulated data for a binary black hole coalescence observed by the two LIGO interferometers at Hanford and Livingston for all parameters in the `IMRPhenomPv2` waveform model. @@ -11,7 +11,7 @@ for all parameters in the `IMRPhenomPv2` waveform model. The code will take around 15 hours to run. For testing, you may prefer to run the `4-parameter CBC tutorial -`__. +`__. .. literalinclude:: /../examples/gw_examples/injection_examples/standard_15d_cbc_tutorial.py :language: python diff --git a/docs/examples.txt b/docs/examples.txt index e11954fb..dabc57ed 100644 --- a/docs/examples.txt +++ b/docs/examples.txt @@ -2,26 +2,26 @@ Examples ======== -1. `General inference examples `_: +1. `General inference examples `_: - * `A simple Gaussian likelihood `_: a good example to see how to write your own likelihood. - * `Linear regression for unknown noise `_: fitting to general time-domain data. + * `A simple Gaussian likelihood `_: a good example to see how to write your own likelihood. + * `Linear regression for unknown noise `_: fitting to general time-domain data. -2. `Examples of injecting and recovering data `__: +2. `Examples of injecting and recovering data `__: - * `4-parameter CBC tutorial `__ - * `15-parameter CBC tutorial `__ - * `Create your own source model `__ - * `Create your own time-domain source model `__ - * `How to specify the prior `__ - * `Using a partially marginalized likelihood `__ - * `Injecting and recovering a neutron-star equation of state `__ + * `4-parameter CBC tutorial `__ + * `15-parameter CBC tutorial `__ + * `Create your own source model `__ + * `Create your own time-domain source model `__ + * `How to specify the prior `__ + * `Using a partially marginalized likelihood `__ + * `Injecting and recovering a neutron-star equation of state `__ -3. `Examples using open data `__: +3. `Examples using open data `__: - * `Analysing the first Binary Black hole detection, GW150914 `__ + * `Analysing the first Binary Black hole detection, GW150914 `__ -4. `Notebook-style tutorials `__: +4. `Notebook-style tutorials `__: - * `Comparing different samplers `__ - * `Visualising the output `__ + * `Comparing different samplers `__ + * `Visualising the output `__ diff --git a/docs/gw_prior.txt b/docs/gw_prior.txt index 8ec12a1f..24f59074 100644 --- a/docs/gw_prior.txt +++ b/docs/gw_prior.txt @@ -96,5 +96,5 @@ Priors using a Jupyter notebook Bilby saves as output the prior volume sampled. You might also find useful to produce priors directly from a Jupyter notebook. You can have a look at one of the Bilby tutorials to check how you define and plot priors in a Jupyter notebook: -`making_priors.ipynb `_. +`making_priors.ipynb `_. diff --git a/docs/likelihood.txt b/docs/likelihood.txt index 79f917ff..6204f32f 100644 --- a/docs/likelihood.txt +++ b/docs/likelihood.txt @@ -65,7 +65,7 @@ This demonstrates the two required features of a :code:`bilby` #. It has a :code:`log_likelihood` method which, when called returns the log likelihood for all the data. -You can find an example that uses this likelihood `here `_. +You can find an example that uses this likelihood `here `_. .. tip:: @@ -155,7 +155,7 @@ be the dependent variable. as the case when there is no signal (i.e., :math:`y(x; \theta)=0`). You can see an example of this likelihood in the `linear regression example -`_. +`_. General likelihood for fitting a function :math:`y(x)` to some data with unknown noise -------------------------------------------------------------------------------------- @@ -213,7 +213,7 @@ instantiating the likelihood:: We provide this general-purpose class as part of bilby :code:`bilby.core.likelihood.GaussianLikleihood` -An example using this likelihood can be found `on this page `_. +An example using this likelihood can be found `on this page `_. Common likelihood functions --------------------------- diff --git a/docs/plugins.txt b/docs/plugins.txt index a73f0ce4..ac5bdb51 100644 --- a/docs/plugins.txt +++ b/docs/plugins.txt @@ -56,7 +56,7 @@ Sampler plugin library This is a list of known sampler plugins. if you don't see your plugin listed here, we encourage you to open a -`merge request `_ to add it. +`merge request `_ to add it. - This could be your sampler @@ -89,5 +89,5 @@ Adding a new plugin group ------------------------- If you want to add support for a new plugin group, please -`open an issue `_ +`open an issue `_ to discuss the details with other developers. diff --git a/docs/samplers.txt b/docs/samplers.txt index 7b4a190f..163c8a9a 100644 --- a/docs/samplers.txt +++ b/docs/samplers.txt @@ -107,9 +107,9 @@ installed using $ pip install -r sampler_requirements.txt where the file `sampler_requirements.txt -`_ can +`_ can be found in the at the top-level of `the repository -`_ (Note: if you installed from pip, you +`_ (Note: if you installed from pip, you can simply download that file and use the command above). From 5f5248886382464b7b7882ea41de55c39afbce22 Mon Sep 17 00:00:00 2001 From: mj-will Date: Thu, 19 Sep 2024 12:36:08 +0100 Subject: [PATCH 21/30] MAINT: change URL --- docs/installation.txt | 16 +--------------- 1 file changed, 1 insertion(+), 15 deletions(-) diff --git a/docs/installation.txt b/docs/installation.txt index bbece99c..729504e2 100644 --- a/docs/installation.txt +++ b/docs/installation.txt @@ -57,7 +57,7 @@ Clone the repository, install the requirements, and then install the software: .. code-block:: console - $ git clone git@git.ligo.org:lscsoft/bilby.git + $ git clone git@git@github.com:bilby-dev/bilby.git $ cd bilby/ $ pip install -r requirements.txt $ pip install . @@ -74,20 +74,6 @@ try to run the examples. to fetch the tags so that when you install from source your version information is up to date. -.. note:: - If you do not have a git.ligo account, and receive an error message: - - .. code-block:: console - - git@git.ligo.org: Permission denied (publickey,gssapi-keyex,gssapi-with-mic). - fatal: Could not read from remote repository. - - Then you need to use the HTTPS URL, e.g., replace the first line above with - - .. code-block:: console - - $ git clone git@github.com:bilby-dev/bilby.git - .. note:: You may be use to using :code:`$ python setup.py install` to install software from source. While it is possible to do this, current recommentations from From 6ad36229f8445c4305e8e1e20a1507c7ee6516cc Mon Sep 17 00:00:00 2001 From: mj-will Date: Thu, 19 Sep 2024 12:36:16 +0100 Subject: [PATCH 22/30] DOC: update contributing --- CONTRIBUTING.md | 29 ++++++++++++++--------------- 1 file changed, 14 insertions(+), 15 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index c08f89ab..d5fddfb4 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -195,7 +195,7 @@ already, you should repository and clone your fork, i.e., on your local machine run ```bash -$ git clone git@git.ligo.org:albert.einstein/bilby.git +$ git clone git@github.com:/bilby.git ``` replacing the SSH url to that of your fork. This will create a directory @@ -224,14 +224,14 @@ automatically be updated. ### Step b) Updating your fork If you already have a fork of bilby, and are starting work on a new project you -can link your clone to the main (`lscsoft`) repository and pull in changes that +can link your clone to the main (`bilby-dev`) repository and pull in changes that have been merged since the time you created your fork, or last updated: **Link your fork to the main repository:** from the directory `/bilby` containing a local copy of the code: ```bash -$ git remote add lscsoft https://github.com/bilby-dev/bilby +$ git remote add upstream https://github.com/bilby-dev/bilby ``` You can see which "remotes" you have available by running @@ -240,10 +240,10 @@ You can see which "remotes" you have available by running $ git remote -v ``` -**Fetch new changes from the `lscsoft` repo:** +**Fetch new changes from the `ustream` repo:** ```bash -$ git pull lscsoft master +$ git pull upstream main ``` ### Step c) Creating a new feature branch @@ -253,8 +253,8 @@ separate from other work, simplifying review and merging once the work is done. To create a new feature branch: ```bash -$ git pull lscsoft -$ git checkout -b my-new-feature lscsoft/master +$ git pull main +$ git checkout -b my-new-feature upstream/main ``` ### Step d) Hack away @@ -278,7 +278,7 @@ Correct a typo at L1 of /bilby/my_awesome_feature.py which returned a dictionary For more discussion of best practices, see e.g. [this blog](https://chris.beams.io/posts/git-commit/). -4. Push your changes to the remote copy of your fork on git.ligo.org +4. Push your changes to the remote copy of your fork on github.com ```bash git push origin my-new-feature @@ -291,20 +291,19 @@ new branch and the `origin` remote: git push --set-upstream origin my-new-feature ``` -### Step e) Open a Merge Request +### Step e) Open a Pull Request When you feel that your work is finished, or if you want feedback on it, you -should create a Merge Request to propose that your changes be merged into the -main (`lscsoft`) repository. +should create a Pull Request to propose that your changes be merged into the +main (`bilby-dev`) repository. After you have pushed your new feature branch to `origin`, you should find a new button on the [bilby repository home -page](https://github.com/bilby-dev/bilby) inviting you to create a Merge +page](https://github.com/bilby-dev/bilby) inviting you to create a Pull Request out of your newly pushed branch. You should click the button, and proceed to fill in the title and description boxes on the MR page. If you are -still working on the merge request and don’t want it to be merged accidentally, -add the string "WIP", "work in progress" or "do not merge" (not -case-sensitive), to the title. +still working on the pull request and don’t want it to be merged accidentally, +you can [convert it to a draft](https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/changing-the-stage-of-a-pull-request). Once the request has been opened, one of the maintainers will assign someone to review the change. From a75883ef3f2c6e5e50bf6903f022a7706382286d Mon Sep 17 00:00:00 2001 From: mj-will Date: Thu, 19 Sep 2024 13:28:13 +0100 Subject: [PATCH 23/30] DOC: change specific to confidential --- README.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.rst b/README.rst index 9adf5bc3..ce70a442 100644 --- a/README.rst +++ b/README.rst @@ -18,7 +18,7 @@ If you need help, find an issue, or just have a question/suggestion you can - Ask questions (or search through other users questions and answers) on `StackOverflow `__ using the bilby tag - Submit issues directly through `the issue tracker `__ - For chat.ligo.org users, join the `#bilby-help `__ or `#bilby-devel `__ channels -- For LVK-specific issues, please open `a confidential issue on bilby_pipe `__ +- For LVK-confidential issues, please open `a confidential issue on bilby_pipe `__ We encourage you to contribute to the development of bilby. This is done via pull request. For help in creating a pull request, see `this page From 7aa2fd620b88bab34e90cf075e0fcd2505ab8061 Mon Sep 17 00:00:00 2001 From: mj-will Date: Thu, 19 Sep 2024 13:31:05 +0100 Subject: [PATCH 24/30] DOC: change gitlab references to github --- CONTRIBUTING.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index d5fddfb4..fb6f65b6 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -188,10 +188,10 @@ do this. ### Step a) getting started All the code lives in a git repository (for a short introduction to git, see -[this tutorial](https://docs.gitlab.com/ee/gitlab-basics/start-using-git.html)) -which is hosted here: https://github.com/bilby-dev/bilby. If you haven't -already, you should -[fork](https://docs.gitlab.com/ee/gitlab-basics/fork-project.html) the +[this tutorial](https://docs.github.com/en/get-started/using-git/about-git)) +which is hosted here: https://github.com/bilby-dev/bilby. +If you haven't already, you should +[fork](https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/working-with-forks/fork-a-repo) the repository and clone your fork, i.e., on your local machine run ```bash @@ -240,7 +240,7 @@ You can see which "remotes" you have available by running $ git remote -v ``` -**Fetch new changes from the `ustream` repo:** +**Fetch new changes from the `upstream` repo:** ```bash $ git pull upstream main From d6fa2c783ac552712429cae50a51c0507331fdef Mon Sep 17 00:00:00 2001 From: mj-will Date: Thu, 19 Sep 2024 13:34:06 +0100 Subject: [PATCH 25/30] MAINT: update URLs for change from master to main --- CONTRIBUTING.md | 4 ++-- README.rst | 2 +- ...inary-coalescence-parameter-estimation.txt | 4 ++-- docs/examples.txt | 24 +++++++++---------- docs/installation.txt | 4 ++-- docs/likelihood.txt | 6 ++--- docs/samplers.txt | 2 +- 7 files changed, 23 insertions(+), 23 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index fb6f65b6..675718be 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -313,10 +313,10 @@ review the change. ### Licence When submitting a MR, please don't include any license information in your code. Our repository is -[licensed](https://github.com/bilby-dev/bilby/blob/master/LICENSE.md). When +[licensed](https://github.com/bilby-dev/bilby/blob/main/LICENSE.md). When submitting your merge request, we will assume you have read and agreed to the terms of [the -license](https://github.com/bilby-dev/bilby/blob/master/LICENSE.md). +license](https://github.com/bilby-dev/bilby/blob/main/LICENSE.md). ### Removing previously installed versions diff --git a/README.rst b/README.rst index ce70a442..ccb7286e 100644 --- a/README.rst +++ b/README.rst @@ -23,7 +23,7 @@ If you need help, find an issue, or just have a question/suggestion you can We encourage you to contribute to the development of bilby. This is done via pull request. For help in creating a pull request, see `this page `__ or contact -us directly. For advice on contributing, see `the contributing guide `__. +us directly. For advice on contributing, see `the contributing guide `__. -------------- diff --git a/docs/compact-binary-coalescence-parameter-estimation.txt b/docs/compact-binary-coalescence-parameter-estimation.txt index facd9258..71bf67e9 100644 --- a/docs/compact-binary-coalescence-parameter-estimation.txt +++ b/docs/compact-binary-coalescence-parameter-estimation.txt @@ -3,7 +3,7 @@ Compact binary coalescence parameter estimation =============================================== In `this example -`_, +`_, we demonstrate how to generate simulated data for a binary black hole coalescence observed by the two LIGO interferometers at Hanford and Livingston for all parameters in the `IMRPhenomPv2` waveform model. @@ -11,7 +11,7 @@ for all parameters in the `IMRPhenomPv2` waveform model. The code will take around 15 hours to run. For testing, you may prefer to run the `4-parameter CBC tutorial -`__. +`__. .. literalinclude:: /../examples/gw_examples/injection_examples/standard_15d_cbc_tutorial.py :language: python diff --git a/docs/examples.txt b/docs/examples.txt index dabc57ed..a3bc2341 100644 --- a/docs/examples.txt +++ b/docs/examples.txt @@ -4,24 +4,24 @@ Examples 1. `General inference examples `_: - * `A simple Gaussian likelihood `_: a good example to see how to write your own likelihood. - * `Linear regression for unknown noise `_: fitting to general time-domain data. + * `A simple Gaussian likelihood `_: a good example to see how to write your own likelihood. + * `Linear regression for unknown noise `_: fitting to general time-domain data. 2. `Examples of injecting and recovering data `__: - * `4-parameter CBC tutorial `__ - * `15-parameter CBC tutorial `__ - * `Create your own source model `__ - * `Create your own time-domain source model `__ - * `How to specify the prior `__ - * `Using a partially marginalized likelihood `__ - * `Injecting and recovering a neutron-star equation of state `__ + * `4-parameter CBC tutorial `__ + * `15-parameter CBC tutorial `__ + * `Create your own source model `__ + * `Create your own time-domain source model `__ + * `How to specify the prior `__ + * `Using a partially marginalized likelihood `__ + * `Injecting and recovering a neutron-star equation of state `__ 3. `Examples using open data `__: - * `Analysing the first Binary Black hole detection, GW150914 `__ + * `Analysing the first Binary Black hole detection, GW150914 `__ 4. `Notebook-style tutorials `__: - * `Comparing different samplers `__ - * `Visualising the output `__ + * `Comparing different samplers `__ + * `Visualising the output `__ diff --git a/docs/installation.txt b/docs/installation.txt index 729504e2..df28d460 100644 --- a/docs/installation.txt +++ b/docs/installation.txt @@ -85,11 +85,11 @@ Installing optional requirements ================================ The `requirements.txt -`_ is a +`_ is a minimal set of requirements for using :code:`bilby`. Additionally, we provide: 1. The file `optional_requirements.txt -`_ +`_ which you should install if you plan to use :code:`bilby` for gravitational-wave data analysis. diff --git a/docs/likelihood.txt b/docs/likelihood.txt index 6204f32f..0ab6733f 100644 --- a/docs/likelihood.txt +++ b/docs/likelihood.txt @@ -65,7 +65,7 @@ This demonstrates the two required features of a :code:`bilby` #. It has a :code:`log_likelihood` method which, when called returns the log likelihood for all the data. -You can find an example that uses this likelihood `here `_. +You can find an example that uses this likelihood `here `_. .. tip:: @@ -155,7 +155,7 @@ be the dependent variable. as the case when there is no signal (i.e., :math:`y(x; \theta)=0`). You can see an example of this likelihood in the `linear regression example -`_. +`_. General likelihood for fitting a function :math:`y(x)` to some data with unknown noise -------------------------------------------------------------------------------------- @@ -213,7 +213,7 @@ instantiating the likelihood:: We provide this general-purpose class as part of bilby :code:`bilby.core.likelihood.GaussianLikleihood` -An example using this likelihood can be found `on this page `_. +An example using this likelihood can be found `on this page `_. Common likelihood functions --------------------------- diff --git a/docs/samplers.txt b/docs/samplers.txt index 163c8a9a..93f921c6 100644 --- a/docs/samplers.txt +++ b/docs/samplers.txt @@ -107,7 +107,7 @@ installed using $ pip install -r sampler_requirements.txt where the file `sampler_requirements.txt -`_ can +`_ can be found in the at the top-level of `the repository `_ (Note: if you installed from pip, you can simply download that file and use the command above). From 50e726fe28ca8ddff98937b445db0f00d83b336a Mon Sep 17 00:00:00 2001 From: mj-will Date: Thu, 19 Sep 2024 13:40:51 +0100 Subject: [PATCH 26/30] MAINT: change merge request to pull request --- CONTRIBUTING.md | 26 +++++++++++++------------- docs/plugins.txt | 4 ++-- docs/writing-documentation.txt | 2 +- 3 files changed, 16 insertions(+), 16 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 675718be..fc7dcfcb 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -8,7 +8,7 @@ have some familiarity with python and git. 3. [Automated Code Checking](#automated-code-checking) 4. [Unit Testing](#unit-testing) 5. [Code relevance](#code-relevance) -6. [Merge requests](#merge-requests) +6. [Pull requests](#pull-requets) 7. [Typical workflow](#typical-workflow) 8. [Hints and tips](#hints-and-tips) 9. [Code overview](#code-overview) @@ -17,7 +17,7 @@ have some familiarity with python and git. ## Code of Conduct Everyone participating in the bilby community, and in particular in our issue -tracker, merge requests, and chat channels, is expected to treat other people +tracker, pull requests, and chat channels, is expected to treat other people with respect and follow the guidelines articulated in the [Python Community Code of Conduct](https://www.python.org/psf/codeofconduct/). Furthermore, members of the LVK collaboration must follow the [LVK Code of Conduct](https://dcc.ligo.org/LIGO-M1900037/public). @@ -80,7 +80,7 @@ usual help channels. ## Unit Testing -Unit tests are an important part of code development, helping to minimize the number of undetected bugs which may be present in a merge request. They also greatly expedite the review of code, and can even help during the initial development if used properly. Accordingly, bilby requires unit testing for any changes with machine readable inputs and outputs (i.e. pretty much everything except plotting). +Unit tests are an important part of code development, helping to minimize the number of undetected bugs which may be present in a pull request. They also greatly expedite the review of code, and can even help during the initial development if used properly. Accordingly, bilby requires unit testing for any changes with machine readable inputs and outputs (i.e. pretty much everything except plotting). Unit testing is integrated into the CI/CD pipeline, and uses the builtin unittest package. Tests should be written into the `test/` directory which corresponds to their location within the package, such that, for example, a change to `bilby/gw/conversion.py` should go into `test/gw/conversion_test.py`. To run a single test locally, one may simply do `pytest /path/to/test TestClass.test_name`, whereas to run all the tests in a given test file one may omit the class and function. @@ -133,16 +133,16 @@ code. Adding code into the bilby source comes with advantages, but also adds complexity and review burden to the project. If you are unsure where it should live, open an issue to discuss it. -## Merge requests +## pull requests All changes to the code base go through the [merge-request workflow](https://docs.gitlab.com/ee/user/project/merge_requests/) Anyone may review your code and you should expect a few comments and questions. Once all -discussions are resolved, core developers will approve the merge request and +discussions are resolved, core developers will approve the pull request and then merge it into the master branch. If you go a few days without a reply, please feel free to ping the thread by adding a new comment. -All merge requests should be focused: they should aim to either add one +All pull requests should be focused: they should aim to either add one feature, solve one bug, or fix some stylistic issues. If multiple changes are lumped together it can slow down the process and make it harder to review. @@ -159,18 +159,18 @@ behaviour. See the [Code style](#code-style) Section for an overview. **Reviewing Changes** -If you are reviewing a merge request (either as a core developer or just as an +If you are reviewing a pull request (either as a core developer or just as an interested party) please keep these three things in mind * If you open a discussion, be timely in responding to the submitter. Note, the reverse does not need to apply. -* Keep your questions/comments focused on the scope of the merge request. If +* Keep your questions/comments focused on the scope of the pull request. If while reviewing the code you notice other things which could be improved, open a new issue. -* Be supportive - merge requests represent a lot of hard work and effort and +* Be supportive - pull requests represent a lot of hard work and effort and should be encouraged. -Reviewers should follow these rules when processing merge requests: +Reviewers should follow these rules when processing pull requests: * Always wait for tests to pass before merging MRs. * Delete branches for merged MRs (by core devs pushing to the main repo). @@ -182,7 +182,7 @@ Reviewers should follow these rules when processing merge requests: Bilby uses the fork and merge model for code review and contributing to the repository. As such, you won't be able to push changes to the master branch. Instead, you'll need to create a fork, make your changes on a feature branch, -then submit a merge request. The following subsections walk you through how to +then submit a pull request. The following subsections walk you through how to do this. ### Step a) getting started @@ -314,7 +314,7 @@ review the change. When submitting a MR, please don't include any license information in your code. Our repository is [licensed](https://github.com/bilby-dev/bilby/blob/main/LICENSE.md). When -submitting your merge request, we will assume you have read and agreed to the +submitting your pull request, we will assume you have read and agreed to the terms of [the license](https://github.com/bilby-dev/bilby/blob/main/LICENSE.md). @@ -346,7 +346,7 @@ interpreter. Below, we give a schematic 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 +define the logic of the code and new pull 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 programmatically generated and diff --git a/docs/plugins.txt b/docs/plugins.txt index ac5bdb51..b17ba739 100644 --- a/docs/plugins.txt +++ b/docs/plugins.txt @@ -56,7 +56,7 @@ Sampler plugin library This is a list of known sampler plugins. if you don't see your plugin listed here, we encourage you to open a -`merge request `_ to add it. +`pull request `_ to add it. - This could be your sampler @@ -89,5 +89,5 @@ Adding a new plugin group ------------------------- If you want to add support for a new plugin group, please -`open an issue `_ +`open an issue `_ to discuss the details with other developers. diff --git a/docs/writing-documentation.txt b/docs/writing-documentation.txt index 34c1402f..43573f01 100644 --- a/docs/writing-documentation.txt +++ b/docs/writing-documentation.txt @@ -59,7 +59,7 @@ all of the new/changed files:: $ git commit -m "Adding my documentation for the feature" $ git push origin adding-my-new-documentation -Then, on the web interface create a merge request. +Then, on the web interface create a pull request. Using reStructured text ----------------------- From f55ea4e5acd2e91aa5a24483e68b96cd4506290b Mon Sep 17 00:00:00 2001 From: mj-will Date: Fri, 20 Sep 2024 15:54:26 +0100 Subject: [PATCH 27/30] MAINT: capitalize Pull requests --- CONTRIBUTING.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index fc7dcfcb..2095d01c 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -133,7 +133,7 @@ code. Adding code into the bilby source comes with advantages, but also adds complexity and review burden to the project. If you are unsure where it should live, open an issue to discuss it. -## pull requests +## Pull requests All changes to the code base go through the [merge-request workflow](https://docs.gitlab.com/ee/user/project/merge_requests/) Anyone may @@ -253,7 +253,7 @@ separate from other work, simplifying review and merging once the work is done. To create a new feature branch: ```bash -$ git pull main +$ git pull main upstream $ git checkout -b my-new-feature upstream/main ``` From 00d6161cf63f66059d122ffca1dee87cfb11ac6b Mon Sep 17 00:00:00 2001 From: mj-will Date: Fri, 20 Sep 2024 16:02:03 +0100 Subject: [PATCH 28/30] DOC: change pull main to fetch --- CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 2095d01c..9d257bf6 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -253,7 +253,7 @@ separate from other work, simplifying review and merging once the work is done. To create a new feature branch: ```bash -$ git pull main upstream +$ git fetch upstream $ git checkout -b my-new-feature upstream/main ``` From 0356b47f83ade3105dad9f707259a530ba74da02 Mon Sep 17 00:00:00 2001 From: "Michael J. Williams" Date: Fri, 4 Oct 2024 15:45:27 +0000 Subject: [PATCH 29/30] DOC: add note about migration to the changelog --- CHANGELOG.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4c9c2f0b..10b757f5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # All notable changes will be documented in this file +**Note:** following the migration from LIGO GitLab to GitHub, the links in this changelog have been retroactively updated. +The original MRs are only visible on the [LIGO GitLab repository](https://git.ligo.org/lscsoft/bilby/-/merge_requests?scope=all&state=all) + ## [Unreleased] From 5bbf6ee2e3d34dbaca9f55df48af3af1c4abecf5 Mon Sep 17 00:00:00 2001 From: "Michael J. Williams" Date: Fri, 4 Oct 2024 15:46:53 +0000 Subject: [PATCH 30/30] DOC: point to PR that updated the changelog --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 10b757f5..5f7fc029 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # All notable changes will be documented in this file -**Note:** following the migration from LIGO GitLab to GitHub, the links in this changelog have been retroactively updated. +**Note:** following the migration from LIGO GitLab to GitHub, the links in this changelog have been retroactively updated, see [this PR](https://github.com/bilby-dev/bilby/pull/36). The original MRs are only visible on the [LIGO GitLab repository](https://git.ligo.org/lscsoft/bilby/-/merge_requests?scope=all&state=all) ## [Unreleased]