From c6728b9c58c89e31448efe90704ce03af7bd4b23 Mon Sep 17 00:00:00 2001 From: Christoph Jabs Date: Thu, 28 Mar 2024 13:54:32 +0200 Subject: [PATCH] fixup! docs: pyapi docs on github pages --- .github/workflows/pages.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/pages.yml b/.github/workflows/pages.yml index d142a988..268fc54a 100644 --- a/.github/workflows/pages.yml +++ b/.github/workflows/pages.yml @@ -31,11 +31,12 @@ jobs: - uses: actions/setup-python@v5 with: python-version: '3.10' - - name: Install Python package + - name: Build Python package uses: PyO3/maturin-action@v1 with: - command: develop - args: --manifest-path rustsat/Cargo.toml + args: -i python --manifest-path rustsat/Cargo.toml + - name: Install Python package + run: pip install target/wheels/rustsat*.whl - name: Build Python API docs run: pip install pdoc && pdoc -o pyapi/ rustsat - name: Upload artifact