We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3419749 commit ccb97aeCopy full SHA for ccb97ae
1 file changed
.github/workflows/build_sphinx.yml
@@ -51,6 +51,16 @@ jobs:
51
python scripts/install_extras.py
52
micromamba install -y -c conda-forge -c cadwr-dms schimpy
53
54
+ - name: Install docs extras (pip WITH deps)
55
+ shell: bash -l {0}
56
+ env:
57
+ PIP_NO_INDEX: "0" # ensure pip can resolve docs deps
58
+ PIP_NO_BUILD_ISOLATION: "1" # optional; fine to keep
59
+ run: |
60
+ micromamba activate docs
61
+ # For [project.optional-dependencies].docs:
62
+ python -m pip install -e .[doc]
63
+
64
- name: Build Sphinx
65
shell: bash -l {0}
66
env:
0 commit comments