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 05340c0 commit 864e4d2
Show file tree
Hide file tree
Showing 4 changed files with 13 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-docs]
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-docs]
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
14 changes: 0 additions & 14 deletions python/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -87,20 +87,6 @@ dev-pandas1 = [
"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",
"sphinx==7.3.7",
"keras_autodoc @ git+https://git@github.com/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",
]

[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://git@github.com/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 864e4d2

Please sign in to comment.