Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,29 @@ cd docs
make html
```

#### Updating the ReadTheDocs env

Due to some heavyweight dependencies, the `conda` environment is pre-solved and
checked in, based on `.binder/environment.yml`. To update this environment,
install `conda-lock` with `pip`:

```bash
pip install .[lock]
```

or `conda`:

```bash
conda install -c conda-forge 'conda-lock>=0.8.0'
```

And then:

```bash
cd docs
python update_env.py
```

### Explore the examples

```bash
Expand Down
Loading