Skip to content

Commit 9ba1cf5

Browse files
committed
chore: fix windows ci issue
1 parent 2e347ee commit 9ba1cf5

File tree

3 files changed

+13
-2
lines changed

3 files changed

+13
-2
lines changed

.github/workflows/ci.yml

+10-1
Original file line numberDiff line numberDiff line change
@@ -34,12 +34,21 @@ jobs:
3434
- name: Install uv
3535
uses: astral-sh/setup-uv@v5
3636
- uses: actions/setup-python@v5
37+
if: ${{ matrix.platform.target == 'x86_64' }}
3738
with:
3839
python-version: |
3940
3.10
4041
3.11
4142
3.12
4243
3.13
44+
# Ignore 3.13 due to a pyo3 issue on aarch64
45+
- uses: actions/setup-python@v5
46+
if: ${{ matrix.platform.target == 'aarch64' }}
47+
with:
48+
python-version: |
49+
3.10
50+
3.11
51+
3.12
4352
- name: Build wheels
4453
uses: PyO3/maturin-action@v1
4554
with:
@@ -168,7 +177,7 @@ jobs:
168177
3.10
169178
3.11
170179
3.12
171-
3.13
180+
# 3.13 leave out 3.13 due to a segfault
172181
architecture: ${{ matrix.platform.target }}
173182
- name: Install uv
174183
uses: astral-sh/setup-uv@v5

Cargo.lock

+2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ indicatif = "0.17.8"
4141
tch = { version = "0.19.0", optional = true }
4242

4343
[dependencies.pyo3]
44-
version = "0.23.3"
44+
version = "0.23.4"
4545
features = ["extension-module", "anyhow"]
4646

4747
[dev-dependencies]

0 commit comments

Comments
 (0)