Skip to content

Commit

Permalink
added find interpreter
Browse files Browse the repository at this point in the history
  • Loading branch information
Waidhoferj committed Jul 21, 2022
1 parent af07bd4 commit 9b9afed
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
runs-on: macos-latest
strategy:
matrix:
python-version: ["3.7", "3.10"] # Empty string will trigger a build with the latest python version
python-version: ["3.7", "3.10"]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
Expand All @@ -33,11 +33,11 @@ jobs:
uses: messense/maturin-action@v1
with:
target: x86_64
args: --release --out dist --sdist
args: --release --out dist --sdist --find-interpreter
- name: Build wheels - universal2
uses: messense/maturin-action@v1
with:
args: --release --universal2 --out dist
args: --release --universal2 --out dist --find-interpreter
- name: Upload wheels
uses: actions/upload-artifact@v2
with:
Expand All @@ -49,7 +49,7 @@ jobs:
strategy:
matrix:
target: [x64, x86]
python-version: ["3.7", "3.10"] # Empty string will trigger a build with the latest python version
python-version: ["3.7", "3.10"]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
Expand All @@ -66,7 +66,7 @@ jobs:
uses: messense/maturin-action@v1
with:
target: ${{ matrix.target }}
args: --release --out dist
args: --release --out dist --find-interpreter
- name: Upload wheels
uses: actions/upload-artifact@v2
with:
Expand All @@ -78,7 +78,7 @@ jobs:
strategy:
matrix:
target: [x86_64, i686]
python-version: ["3.7", "3.10"] # Empty string will trigger a build with the latest python version
python-version: ["3.7", "3.10"]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
Expand All @@ -90,7 +90,7 @@ jobs:
with:
target: ${{ matrix.target }}
manylinux: auto
args: --release --out dist
args: --release --out dist --find-interpreter
- name: Upload wheels
uses: actions/upload-artifact@v2
with:
Expand Down

0 comments on commit 9b9afed

Please sign in to comment.