Skip to content

Commit e68ef3e

Browse files
jeremymanningclaude
andcommitted
Fix documentation build in GitHub Actions
Fix the docs Makefile install-deps target to use correct relative path "../[docs]" instead of ".[docs]" when running from docs/ directory. This resolves the GitHub Actions docs-test job failure: "ERROR: file:///home/runner/work/clustrix/clustrix/docs does not appear to be a Python project: neither 'setup.py' nor 'pyproject.toml' found." Verified locally that documentation builds successfully with this fix. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent b4eaa62 commit e68ef3e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ help:
1616

1717
# Install documentation dependencies
1818
install-deps:
19-
pip install -e ".[docs]"
19+
pip install -e "../[docs]"
2020

2121
# Build HTML documentation
2222
html: install-deps

0 commit comments

Comments
 (0)