Skip to content

Commit

Permalink
fixed build option, see PyO3/maturin#955
Browse files Browse the repository at this point in the history
  • Loading branch information
dimastbk committed Nov 9, 2022
1 parent 7a33f24 commit f941486
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/Build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,15 +26,15 @@ jobs:
uses: messense/maturin-action@v1
with:
target: x86_64
args: -i python --release --out dist
args: -i python --release --out dist --sdist
- name: Install built wheel - x86_64
run: |
pip install python-calamine --no-index --find-links dist --force-reinstall
- name: Build wheels - universal2
if: ${{ matrix.python-version != '3.7' }}
uses: messense/maturin-action@v1
with:
args: -i python --release --universal2 --out dist --no-sdist
args: -i python --release --universal2 --out dist
- name: Install built wheel - universal2
if: ${{ matrix.python-version != '3.7' }}
run: |
Expand Down Expand Up @@ -76,7 +76,7 @@ jobs:
uses: messense/maturin-action@v1
with:
target: ${{ matrix.target }}
args: -i python --release --out dist --no-sdist
args: -i python --release --out dist
- name: Install built wheel
run: |
pip install python-calamine --no-index --find-links dist --force-reinstall
Expand Down Expand Up @@ -114,7 +114,7 @@ jobs:
with:
target: ${{ matrix.target }}
manylinux: auto
args: -i python${{ matrix.python-version }} --release --out dist --no-sdist
args: -i python${{ matrix.python-version }} --release --out dist
- name: Python UnitTest
if: matrix.target == 'x86_64'
run: |
Expand Down

0 comments on commit f941486

Please sign in to comment.