Skip to content

Commit

Permalink
MOAH WHEELS
Browse files Browse the repository at this point in the history
  • Loading branch information
simoncozens committed Jan 17, 2025
1 parent 812ade5 commit e62bd74
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,11 +61,12 @@ jobs:
strategy:
matrix:
target: [x64, x86]
python: ["3.9", "3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.10"
python-version: ${{ matrix.python }}
architecture: ${{ matrix.target }}
- name: Install Protoc
uses: arduino/setup-protoc@v3
Expand All @@ -79,14 +80,15 @@ jobs:
- name: Upload wheels
uses: actions/upload-artifact@v4
with:
name: wheels-windows-${{ matrix.target }}
name: wheels-windows-${{ matrix.target }}-${{ matrix.python }}
path: dist

macos:
runs-on: macos-latest
strategy:
matrix:
target: [x86_64, aarch64]
python: ["3.9", "3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v4
- name: Install Protoc
Expand All @@ -95,7 +97,7 @@ jobs:
repo-token: ${{ secrets.GITHUB_TOKEN }}
- uses: actions/setup-python@v5
with:
python-version: "3.10"
python-version: ${{ matrix.python }}
- name: Build wheels
uses: PyO3/maturin-action@v1
with:
Expand All @@ -106,7 +108,7 @@ jobs:
- name: Upload wheels
uses: actions/upload-artifact@v4
with:
name: wheels-macos-${{ matrix.target }}
name: wheels-macos-${{ matrix.target }}-${{ matrix.python }}
path: dist

sdist:
Expand Down

0 comments on commit e62bd74

Please sign in to comment.