Skip to content

Commit

Permalink
chore: add python interpreter versions to linux
Browse files Browse the repository at this point in the history
  • Loading branch information
benfdking committed Mar 5, 2025
1 parent 0e74496 commit 4376bce
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion .github/workflows/python-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 4376bce

Please sign in to comment.