Skip to content

Commit

Permalink
Revert the move of requirements-docs to an extra
Browse files Browse the repository at this point in the history
See PR #209
  • Loading branch information
aversey committed Jul 16, 2024
1 parent 49afc85 commit 6ffa4c0
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 16 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 -r ../requirements-docs.txt && pip3 install -e .[dev]

- 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 -r ../requirements-docs.txt && pip3 install -e .[dev]

- name: generate autodoc
run: python3 ./python/auto_doc.py
Expand Down
15 changes: 1 addition & 14 deletions python/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -86,20 +86,7 @@ dev-pandas1 = [
"pandas<=1.5.3",
"sqlalchemy<=1.4.48",
]
dev-docs = [
"mkdocs==1.5.3",
"mkdocs-material==9.5.17",
"mike==2.0.0",
"sphinx==7.3.7",
"keras_autodoc @ git+https://[email protected]/logicalclocks/keras-autodoc",
"markdown-include==0.8.1",
"mkdocs-jupyter==0.24.3",
"markdown==3.6",
"pymdown-extensions==10.7.1",
"mkdocs-macros-plugin==1.0.4",
"mkdocs-minify-plugin>=0.2.0",
]
dev = ["hopsworks[dev-no-opt,great-expectations,dev-docs]"]
dev = ["hopsworks[dev-no-opt,great-expectations]"]

[build-system]
requires = ["setuptools", "wheel"]
Expand Down
11 changes: 11 additions & 0 deletions requirements-docs.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
mkdocs==1.5.3
mkdocs-material==9.5.17
mike==2.0.0
sphinx==7.3.7
keras_autodoc @ git+https://[email protected]/logicalclocks/keras-autodoc
markdown-include==0.8.1
mkdocs-jupyter==0.24.3
markdown==3.6
pymdown-extensions==10.7.1
mkdocs-macros-plugin==1.0.4
mkdocs-minify-plugin>=0.2.0

0 comments on commit 6ffa4c0

Please sign in to comment.