From 4376bceaebbaea6bc5b64ed35da682d234103006 Mon Sep 17 00:00:00 2001 From: Ben King <9087625+benfdking@users.noreply.github.com> Date: Tue, 4 Mar 2025 13:24:48 +0000 Subject: [PATCH] chore: add python interpreter versions to linux --- .github/workflows/python-ci.yml | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/.github/workflows/python-ci.yml b/.github/workflows/python-ci.yml index b3abc71a8..f1cd24efc 100644 --- a/.github/workflows/python-ci.yml +++ b/.github/workflows/python-ci.yml @@ -77,11 +77,23 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 + - uses: actions/setup-python@v5 + with: + python-version: "3.10" + - uses: actions/setup-python@v5 + with: + python-version: "3.11" + - uses: actions/setup-python@v5 + with: + python-version: "3.12" + - uses: actions/setup-python@v5 + with: + python-version: "3.13" - name: Build wheels uses: PyO3/maturin-action@v1 with: target: x86_64-unknown-linux-gnu - args: --release --out dist --manifest-path crates/cli/Cargo.toml + args: --release --interpreter python3.10 python3.11 python3.12 python3.13 --out dist --manifest-path crates/cli/Cargo.toml sccache: "true" - name: Upload wheels uses: actions/upload-artifact@v4