Skip to content

Commit

Permalink
[FSTORE-1426] add requirements.txt for documentation instead of using…
Browse files Browse the repository at this point in the history
… a profile in hsfs (logicalclocks#1351)
  • Loading branch information
SirOibaf committed Jun 13, 2024
1 parent 50fc735 commit 41ce3dc
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 15 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/mkdocs-master.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 .[python,dev,docs]
run: cp ../README.md . && pip3 install -r ../requirements-docs.txt && pip3 install -e .[python,dev]

- name: generate autodoc
run: python3 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 .[python,dev,docs]
run: cp ../README.md . && pip3 install -r ../requirements-docs.txt && pip3 install -e .[python,dev]

- name: generate autodoc
run: python3 auto_doc.py
Expand Down
13 changes: 0 additions & 13 deletions python/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -68,19 +68,6 @@ dev-pandas1 = [
"pandas<=1.5.3",
"sqlalchemy<=1.4.48",
]
docs = [
"mkdocs==1.5.3",
"mkdocs-material==9.5.17",
"mike==2.0.0",
"sphinx==7.2.6",
"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",
]
hive = [
"pyhopshive[thrift]",
"pyarrow>=10.0",
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.2.6
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 41ce3dc

Please sign in to comment.