Skip to content

Commit

Permalink
🔧 Configure docs extras dependencies correctly
Browse files Browse the repository at this point in the history
Turns out groups and extras can't be used together in pyproject.toml by poetry, see python-poetry/poetry#4897. Changed things around so that `pip install .[docs]` works!
  • Loading branch information
weiji14 committed Jun 7, 2022
1 parent 09e53a2 commit a92d143
Show file tree
Hide file tree
Showing 3 changed files with 139 additions and 129 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
# Install dependencies needed for documentation build
- name: Install docs build dependencies
run: |
pip install . jupyter-book planetary-computer pystac
pip install .[docs]
pip list
# Build the docs
Expand Down
Loading

0 comments on commit a92d143

Please sign in to comment.