Skip to content

Commit

Permalink
Specify Python versions
Browse files Browse the repository at this point in the history
  • Loading branch information
kylebarron committed Dec 9, 2024
1 parent e931335 commit 462afda
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/python-core-wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
with:
rust-toolchain: nightly
target: ${{ matrix.platform.target }}
args: --release --out dist --find-interpreter --manifest-path python/${{ matrix.module }}/Cargo.toml
args: --release --out dist -i 3.9 -i 3.10 -i 3.11 -i 3.12 -i 3.13 --manifest-path python/${{ matrix.module }}/Cargo.toml
sccache: "true"
manylinux: auto
- name: Upload wheels
Expand Down Expand Up @@ -87,7 +87,7 @@ jobs:
# RUSTFLAGS: "-Zinline-mir=no"
# with:
# target: ${{ matrix.platform.target }}
# args: --release --out dist --find-interpreter --manifest-path python/${{ matrix.module }}/Cargo.toml
# args: --release --out dist -i 3.9 -i 3.10 -i 3.11 -i 3.12 -i 3.13 --manifest-path python/${{ matrix.module }}/Cargo.toml
# sccache: "true"
# manylinux: musllinux_1_2
# - name: Upload wheels
Expand Down Expand Up @@ -121,7 +121,7 @@ jobs:
with:
rust-toolchain: nightly
target: ${{ matrix.platform.target }}
args: --release --out dist --find-interpreter --manifest-path python/${{ matrix.module }}/Cargo.toml
args: --release --out dist -i 3.9 -i 3.10 -i 3.11 -i 3.12 -i 3.13 --manifest-path python/${{ matrix.module }}/Cargo.toml
sccache: "true"
- name: Upload wheels
uses: actions/upload-artifact@v4
Expand Down Expand Up @@ -154,7 +154,7 @@ jobs:
with:
rust-toolchain: nightly
target: ${{ matrix.platform.target }}
args: --release --out dist --find-interpreter --manifest-path python/${{ matrix.module }}/Cargo.toml
args: --release --out dist -i 3.9 -i 3.10 -i 3.11 -i 3.12 -i 3.13 --manifest-path python/${{ matrix.module }}/Cargo.toml
sccache: "true"
- name: Upload wheels
uses: actions/upload-artifact@v4
Expand Down Expand Up @@ -196,7 +196,7 @@ jobs:
with:
rust-toolchain: nightly
target: ${{ matrix.platform.target }}
args: --release --out dist --find-interpreter --no-default-features --manifest-path python/${{ matrix.module }}/Cargo.toml
args: --release --out dist -i 3.9 -i 3.10 -i 3.11 -i 3.12 -i 3.13 --no-default-features --manifest-path python/${{ matrix.module }}/Cargo.toml
sccache: "true"
- name: Upload wheels
uses: actions/upload-artifact@v4
Expand Down

0 comments on commit 462afda

Please sign in to comment.