Skip to content
Snippets Groups Projects

DOC: Updates to contribution guide

Merged Rhiannon Udall requested to merge rhiannon.udall/bilby:update-contributing into master
All threads resolved!
1 file
+ 13
1
Compare changes
  • Side-by-side
  • Inline
+ 13
1
@@ -155,7+155,7 @@
Comments and questions may pertain to the functionality, but they may also
relate to the code quality. We are keen to maintain a high standard of the
code. This makes it easier to maintain, develop, and track down buggy
behaviour. See the [Code style](#code-style) Section for an overview.
**Reviewing Changes**
@@ -199,7+199,7 @@
```
replacing the SSH url to that of your fork. This will create a directory
`/bilby` containing a local copy of the code. From this directory, you can run
`/bilby` containing a local copy of the code.
It is strongly advised to perform development with a dedicated conda environment.
In depth instructions for creating a conda environment may be found at the relevant
[conda docs](https://conda.io/projects/conda/en/latest/user-guide/tasks/manage-environments.html#activating-an-environment),
but for most purposes the commands
```bash
$ conda create -n my-environment-name python=3.X
$ conda activate my-environment-name
```
will produce the desired results. Once this is completed, one may proceed to the `/bilby` directory and run
```bash
$ pip install -e .
Loading