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