From c26b012e3ef9c45c0f416f156949b20dd5a5a46b Mon Sep 17 00:00:00 2001 From: Akseli Lukkarila Date: Wed, 30 Oct 2024 12:34:25 +0200 Subject: [PATCH] remove python versions from linux build since it uses docker --- .github/workflows/maturin.yml | 25 +++++++++---------------- 1 file changed, 9 insertions(+), 16 deletions(-) diff --git a/.github/workflows/maturin.yml b/.github/workflows/maturin.yml index a7fdc922..3bebbec7 100644 --- a/.github/workflows/maturin.yml +++ b/.github/workflows/maturin.yml @@ -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 @@ -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: