Skip to content

Commit

Permalink
馃┕ Fix missing API docs by installing zen3geo package
Browse files Browse the repository at this point in the history
Need to do `pip install .` so that API docs actually render. Also discovered issue with pyproject.toml build-system so fixed that too.
  • Loading branch information
weiji14 committed Jun 4, 2022
1 parent 6730641 commit c2a190f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/deploy-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,10 @@ jobs:

# Install dependencies needed for documentation build
- name: Install docs build dependencies
run: pip install jupyter-book
run: |
pip install jupyter-book
pip install .
pip list
# Build the docs
- name: Build the docs
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,5 +30,5 @@ enable = true
style = "semver"

[build-system]
requires = ["poetry-core>=1.0.0", "poetry-dynamic-versioning"]
build-backend = "poetry.core.masonry.api"
requires = ["poetry>=1.2.0b1", "poetry-dynamic-versioning"]
build-backend = "poetry.masonry.api"

0 comments on commit c2a190f

Please sign in to comment.