From 9ebb0e575bdc76718c3c408c8f0a13e59d86f1cc Mon Sep 17 00:00:00 2001 From: "Victor M. Alvarez" Date: Tue, 30 Jul 2024 19:16:10 +0200 Subject: [PATCH] ci(py): trying building source distribution with a different command. --- .github/workflows/release.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 1938145b..52f6af34 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -138,8 +138,8 @@ jobs: # Using maturin 1.5.1 because the latest version (1.7.0) has the # following issue: https://github.com/PyO3/maturin/issues/2154 run: | - pip install maturin==1.5.1 build - python -m build --sdist -o wheelhouse py + pip install maturin==1.5.1 + maturin sdist --manifest-path py/Cargo.toml -o wheelhouse - name: Build ${{ matrix.platform || matrix.os }} binaries run: cibuildwheel --output-dir wheelhouse py