Skip to content

Commit

Permalink
Fix pyproject optional docgen dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
aversey committed Jul 15, 2024
1 parent 8348823 commit d5d5d4f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/mkdocs-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:

- name: install deps
working-directory: ./python
run: cp ../README.md . && pip3 install -e .[dev]
run: cp ../README.md . && pip3 install -e .[dev-docs]

- name: generate autodoc
run: python3 ./python/auto_doc.py
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/mkdocs-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:

- name: install deps
working-directory: ./python
run: cp ../README.md . && pip3 install -e .[dev]
run: cp ../README.md . && pip3 install -e .[dev-docs]

- name: generate autodoc
run: python3 ./python/auto_doc.py
Expand Down
3 changes: 2 additions & 1 deletion python/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,9 @@ dev-pandas1 = [
"pandas<=1.5.3",
"sqlalchemy<=1.4.48",
]
dev = ["hopsworks[dev-no-opt,great-expectations]"]
dev-docs = [
"hopsworks[dev]",
"mkdocs==1.5.3",
"mkdocs-material==9.5.17",
"mike==2.0.0",
Expand All @@ -99,7 +101,6 @@ dev-docs = [
"mkdocs-macros-plugin==1.0.4",
"mkdocs-minify-plugin>=0.2.0",
]
dev = ["hopsworks[dev-no-opt,great-expectations,dev-docs]"]

[build-system]
requires = ["setuptools", "wheel"]
Expand Down

0 comments on commit d5d5d4f

Please sign in to comment.