Skip to content

Commit

Permalink
Remove --no-sdist as is new default & throws error
Browse files Browse the repository at this point in the history
  • Loading branch information
LSchueler committed Jan 4, 2024
1 parent d861e9b commit 876b671
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -119,15 +119,15 @@ 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
python -c "import gstools_core"
- 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
Expand Down

0 comments on commit 876b671

Please sign in to comment.