Skip to content

Commit

Permalink
Fix windows wheel (#274)
Browse files Browse the repository at this point in the history
* Fix windows wheel

* specify 3.13

* remove pypy on windows
  • Loading branch information
kylebarron authored Dec 10, 2024
1 parent 05c1ffb commit a46d767
Showing 1 changed file with 3 additions and 10 deletions.
13 changes: 3 additions & 10 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -125,22 +125,15 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Install uv
uses: astral-sh/setup-uv@v3
- uses: actions/setup-python@v5
with:
enable-cache: true
version: "0.4.x"

- name: Install Python versions
# Note: we exclude 3.13 from Windows, because it failed with a link error
# https://github.com/kylebarron/arro3/actions/runs/11957080778/job/33333367496
run: uv python install 3.9 3.10 3.11 3.12 pypy3.10
python-version: 3.13

- name: Build wheels
uses: PyO3/maturin-action@v1
with:
target: ${{ matrix.platform.target }}
args: --release --out dist -i 3.9 -i 3.10 -i 3.11 -i 3.12 -i pypy3.10 --manifest-path ${{ 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 ${{ matrix.module }}/Cargo.toml
sccache: "true"
- name: Upload wheels
uses: actions/upload-artifact@v4
Expand Down

0 comments on commit a46d767

Please sign in to comment.