Skip to content

Commit ff9c0f0

Browse files
eurunuelaclaude
andcommitted
fix: pin mkdocs<2.0 to prevent Material theme incompatibility
mkdocs 2.0 is incompatible with mkdocs-material 9.x. When installed unpinned, pip now resolves to mkdocs 2.0 which causes the build to produce broken HTML with a Jekyll meta tag instead of the Material theme. Pinning mkdocs<2.0 ensures the docs site renders correctly with the Material theme. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent c1a8959 commit ff9c0f0

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
python-version: '3.x'
3333

3434
- name: Install dependencies
35-
run: pip install mkdocs-material
35+
run: pip install mkdocs-material "mkdocs<2.0"
3636

3737
- name: Build documentation
3838
run: mkdocs build --strict

0 commit comments

Comments
 (0)