Skip to content

Commit 86d8c92

Browse files
committed
Revert the move of requirements-docs to an extra
See PR logicalclocks#209
1 parent 166bfd9 commit 86d8c92

File tree

4 files changed

+13
-16
lines changed

4 files changed

+13
-16
lines changed

.github/workflows/mkdocs-main.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121

2222
- name: install deps
2323
working-directory: ./python
24-
run: cp ../README.md . && pip3 install -e .[dev-docs]
24+
run: cp ../README.md . && pip3 install -r ../requirements-docs.txt && pip3 install -e .[dev]
2525

2626
- name: generate autodoc
2727
run: python3 ./python/auto_doc.py

.github/workflows/mkdocs-release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626

2727
- name: install deps
2828
working-directory: ./python
29-
run: cp ../README.md . && pip3 install -e .[dev-docs]
29+
run: cp ../README.md . && pip3 install -r ../requirements-docs.txt && pip3 install -e .[dev]
3030

3131
- name: generate autodoc
3232
run: python3 ./python/auto_doc.py

python/pyproject.toml

-14
Original file line numberDiff line numberDiff line change
@@ -87,20 +87,6 @@ dev-pandas1 = [
8787
"sqlalchemy<=1.4.48",
8888
]
8989
dev = ["hopsworks[dev-no-opt,great-expectations]"]
90-
dev-docs = [
91-
"hopsworks[dev]",
92-
"mkdocs==1.5.3",
93-
"mkdocs-material==9.5.17",
94-
"mike==2.0.0",
95-
"sphinx==7.3.7",
96-
"keras_autodoc @ git+https://git@github.com/logicalclocks/keras-autodoc",
97-
"markdown-include==0.8.1",
98-
"mkdocs-jupyter==0.24.3",
99-
"markdown==3.6",
100-
"pymdown-extensions==10.7.1",
101-
"mkdocs-macros-plugin==1.0.4",
102-
"mkdocs-minify-plugin>=0.2.0",
103-
]
10490

10591
[build-system]
10692
requires = ["setuptools", "wheel"]

requirements-docs.txt

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
mkdocs==1.5.3
2+
mkdocs-material==9.5.17
3+
mike==2.0.0
4+
sphinx==7.3.7
5+
keras_autodoc @ git+https://git@github.com/logicalclocks/keras-autodoc
6+
markdown-include==0.8.1
7+
mkdocs-jupyter==0.24.3
8+
markdown==3.6
9+
pymdown-extensions==10.7.1
10+
mkdocs-macros-plugin==1.0.4
11+
mkdocs-minify-plugin>=0.2.0

0 commit comments

Comments
 (0)