Skip to content

Commit

Permalink
fix python.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Lips7 committed Oct 14, 2024
1 parent 588f8a1 commit d5b25a2
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 8 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -117,10 +117,10 @@ jobs:
fail-fast: false
matrix:
platform:
- runner: macos-12
target: x86_64
- runner: macos-14
target: aarch64
- runner: macos-15
target: aarch64
python: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -149,6 +149,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Python
uses: actions/setup-python@v5
with:
python-version: 3.13
- name: Build sdist
uses: PyO3/maturin-action@v1
with:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,12 @@ jobs:
# - runner: ubuntu-latest
# target: aarch64-unknown-linux-gnu
# suffix: so
- runner: macos-12
target: x86_64-apple-darwin
suffix: dylib
- runner: macos-14
target: aarch64-apple-darwin
suffix: dylib
- runner: macos-15
target: aarch64-apple-darwin
suffix: dylib
- runner: windows-latest
target: x86_64-pc-windows-gnu
suffix: dll
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,12 @@ jobs:
suffix: so
# - runner: ubuntu-latest
# target: aarch64-unknown-linux-gnu
- runner: macos-12
target: x86_64-apple-darwin
suffix: dylib
- runner: macos-14
target: aarch64-apple-darwin
suffix: dylib
- runner: macos-15
target: aarch64-apple-darwin
suffix: dylib
- runner: windows-latest
target: x86_64-pc-windows-gnu
suffix: dll
Expand Down

0 comments on commit d5b25a2

Please sign in to comment.