Skip to content

Commit

Permalink
πŸ’š Fix dist
Browse files Browse the repository at this point in the history
  • Loading branch information
yhs0602 committed Dec 27, 2024
1 parent a5a43ac commit c74d5dd
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/publish-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,8 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-13, macos-latest, windows-latest]
# macos-13 is an intel runner, macos-14 is apple silicon
os: [ubuntu-latest, macos-13, macos-14, windows-latest]

steps:
- uses: actions/checkout@v4
Expand All @@ -52,10 +53,14 @@ jobs:

- uses: astral-sh/setup-uv@v4

- uses: pypa/[email protected]
- name: Build wheels
uses: pypa/[email protected]
env:
CIBW_SKIP: cp36-* cp37-* cp38-*
CIBW_ENABLE: cpython-prerelease
CIBW_ARCHS_WINDOWS: auto ARM64
CIBW_ARCHS_WINDOWS: "AMD64 x86"
CIBW_ARCHS_MACOS: "x86_64 universal2 arm64"
CIBW_ARCHS_LINUX: "x86_64 aarch64"

- name: Verify clean directory
run: git diff --exit-code
Expand Down

0 comments on commit c74d5dd

Please sign in to comment.