We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2d4c25c commit a4fb124Copy full SHA for a4fb124
.github/workflows/api-docs.yml
@@ -67,14 +67,19 @@ jobs:
67
run: echo PATH="$PATH:/github/home/.local/bin" >> "$GITHUB_ENV"
68
- name: Install doc build requirements
69
run: |
70
+ pip install setuptools --upgrade
71
+
72
+ # Install tomli so that pyproject.toml can be parsed
73
+ pip install tomli
74
75
# Install package itself to install the samples datasets
- pip3 install .
76
+ pip install .
77
kh-download-datasets --force-overwrite
78
kh-status
79
80
# Install the doc python requirements
81
cd doc
- pip3 install -U -r requirements.txt
82
+ pip install -U -r requirements.txt
83
- name: Build Sphinx Documentation
84
85
0 commit comments