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 be7607e commit f052165Copy full SHA for f052165
.github/workflows/api-docs.yml
@@ -59,13 +59,14 @@ jobs:
59
- name: Install doc build requirements
60
run: |
61
# Install package itself to install the samples datasets
62
- pip3 install .
+ python -m pip install --upgrade pip
63
+ python -m pip install --user .
64
kh-download-datasets --force-overwrite --version ${{ inputs.khiops-samples-revision || env.DEFAULT_KHIOPS_SAMPLES_REVISION }}
65
kh-status
66
67
# Install the doc python requirements
68
cd doc
- pip3 install -U -r requirements.txt
69
+ python -m pip install -U -r requirements.txt
70
# Clone the Khiops Python tutorial repository while building the documentation
71
- name: Build Sphinx Documentation
72
0 commit comments