From 876b6710736a6e0bec6d7c82ea7d6fcad67dbaaa Mon Sep 17 00:00:00 2001 From: LSchueler Date: Thu, 4 Jan 2024 18:09:37 +0100 Subject: [PATCH] Remove --no-sdist as is new default & throws error --- .github/workflows/main.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index d7c0ffa..b0a4f53 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -57,7 +57,7 @@ jobs: with: target: ${{ matrix.target }} manylinux: auto - args: --release --out dist --no-sdist + args: --release --out dist - name: Install built wheel if: matrix.target == 'x86_64' run: | @@ -90,7 +90,7 @@ jobs: uses: messense/maturin-action@v1 with: target: ${{ matrix.target }} - args: --release --out dist --no-sdist + args: --release --out dist - name: Install built wheel run: | pip install gstools-core --no-index --find-links dist --force-reinstall --no-deps @@ -119,7 +119,7 @@ jobs: uses: messense/maturin-action@v1 with: target: x86_64 - args: --release --out dist --no-sdist + args: --release --out dist - name: Install built wheel - x86_64 run: | pip install gstools-core --no-index --find-links dist --force-reinstall --no-deps @@ -127,7 +127,7 @@ jobs: - name: Build wheels - universal2 uses: messense/maturin-action@v1 with: - args: --release --universal2 --out dist --no-sdist + args: --release --universal2 --out dist - name: Install built wheel - universal2 run: | pip install gstools-core --no-index --find-links dist --force-reinstall --no-deps