Skip to content

Commit

Permalink
Add development guide note for conda users
Browse files Browse the repository at this point in the history
  • Loading branch information
mfisher87 committed Sep 17, 2024
1 parent f96b5f0 commit d1b619d
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
9 changes: 9 additions & 0 deletions docs/contributing/development.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,15 @@ Install _earthaccess_ in editable mode with optional development dependencies:
pip install --editable .[dev,test,docs]
```

??? note "For conda users"

For your convenience, there is a `environment-dev.yml` file at the root of this
repository. You can create a dev environment quickly with:

```bash
conda env create --file environment-dev.yml
```

## Managing Dependencies

If you need to add a new dependency, edit `pyproject.toml` and insert the dependency in
Expand Down
2 changes: 1 addition & 1 deletion environment-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ dependencies:

- pip
- pip:
- --editable .[dev,docs]
- --editable .[dev,test,docs]

0 comments on commit d1b619d

Please sign in to comment.