Skip to content

Commit c3816c2

Browse files
zhangfengcdtclaude
andcommitted
Add debugging info to Read the Docs build
- Add directory and file listing to understand build environment - Remove problematic cd command that might not work - Add debugging output to troubleshoot maturin build issues 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 45e448a commit c3816c2

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

.readthedocs.yaml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,13 @@ build:
3030
# Build and install the ProllyTree Python package with SQL features
3131
- |
3232
export PATH="$HOME/.cargo/bin:$PATH"
33-
cd $READTHEDOCS_PROJECT_PATH
33+
echo "Current directory: $(pwd)"
34+
echo "Project path: $READTHEDOCS_PROJECT_PATH"
35+
ls -la
36+
echo "Looking for Cargo.toml:"
37+
find . -name "Cargo.toml" -type f
3438
maturin build --release --features "python sql" --out target/wheels
39+
ls -la target/wheels/
3540
python -m pip install target/wheels/prollytree-*.whl
3641
3742
# Build documentation in the docs/ directory with Sphinx

0 commit comments

Comments
 (0)