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 765b0a7 commit de0585aCopy full SHA for de0585a
1 file changed
.github/workflows/build_docs.yml
@@ -34,6 +34,13 @@ jobs:
34
run: |
35
uv sync --extra docs --frozen
36
37
+ # TEMPORARY: sphinx-click cannot introspect typer's vendored click (typer
38
+ # >= 0.26), which breaks the CLI reference pages. Pin to the last real-click
39
+ # typer for the docs build only (does not affect the shipped package) until
40
+ # we settle on a long-term docs fix. See the docs CLI reference pages.
41
+ - name: Pin typer < 0.26 for docs build (sphinx-click compatibility)
42
+ run: uv pip install 'typer<0.26'
43
+
44
- name: Build docs
45
working-directory: docs
46
0 commit comments