Skip to content

Commit

Permalink
remove python versions from linux build since it uses docker
Browse files Browse the repository at this point in the history
  • Loading branch information
Esgrove committed Oct 30, 2024
1 parent 56a926a commit c26b012
Showing 1 changed file with 9 additions and 16 deletions.
25 changes: 9 additions & 16 deletions .github/workflows/maturin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,24 +33,22 @@ jobs:
target: x86_64
- runner: ubuntu-latest
target: x86
# TODO: fix cross-compilation
#- runner: ubuntu-latest
# target: aarch64
- runner: ubuntu-latest
target: aarch64
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: |
3.9
3.10
3.11
3.12
3.13
python-version: 3.x
- name: Build wheels
uses: PyO3/maturin-action@v1
with:
target: ${{ matrix.platform.target }}
args: --release --out dist --find-interpreter --manifest-path python-pyo3/Cargo.toml
args: |
--release
--out dist
--find-interpreter
--manifest-path python-pyo3/Cargo.toml
manylinux: auto
- name: Upload wheels
uses: actions/upload-artifact@v4
Expand All @@ -73,12 +71,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: |
3.9
3.10
3.11
3.12
3.13
python-version: 3.x
- name: Build wheels
uses: PyO3/maturin-action@v1
with:
Expand Down

0 comments on commit c26b012

Please sign in to comment.