Skip to content

Commit 0e7fae6

Browse files
committed
fix: use Python 3.11 for docs build to support MCP examples
The build_docs.py script requires Python 3.11+ and processes MCP examples, so we need Python 3.11 with all extras for proper documentation generation.
1 parent 52bd25e commit 0e7fae6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/docs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@ jobs:
1717
- name: Install uv
1818
uses: astral-sh/setup-uv@e92bafb6253dcd438e0484186d7669ea7a8ca1cc # v6.4.3
1919
with:
20-
python-version: "3.9"
20+
python-version: "3.11"
2121
enable-cache: true
2222

2323
- name: Install all dependencies
24-
run: uv sync --all-extras --no-extra mcp
24+
run: uv sync --all-extras
2525

2626
- name: Build documentation
2727
run: |

0 commit comments

Comments
 (0)