Skip to content

Commit

Permalink
chore: fix windows ci issue
Browse files Browse the repository at this point in the history
  • Loading branch information
aseyboldt committed Feb 13, 2025
1 parent 2e347ee commit 9ba1cf5
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 2 deletions.
11 changes: 10 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,21 @@ jobs:
- name: Install uv
uses: astral-sh/setup-uv@v5
- uses: actions/setup-python@v5
if: ${{ matrix.platform.target == 'x86_64' }}
with:
python-version: |
3.10
3.11
3.12
3.13
# Ignore 3.13 due to a pyo3 issue on aarch64
- uses: actions/setup-python@v5
if: ${{ matrix.platform.target == 'aarch64' }}
with:
python-version: |
3.10
3.11
3.12
- name: Build wheels
uses: PyO3/maturin-action@v1
with:
Expand Down Expand Up @@ -168,7 +177,7 @@ jobs:
3.10
3.11
3.12
3.13
# 3.13 leave out 3.13 due to a segfault
architecture: ${{ matrix.platform.target }}
- name: Install uv
uses: astral-sh/setup-uv@v5
Expand Down
2 changes: 2 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ indicatif = "0.17.8"
tch = { version = "0.19.0", optional = true }

[dependencies.pyo3]
version = "0.23.3"
version = "0.23.4"
features = ["extension-module", "anyhow"]

[dev-dependencies]
Expand Down

0 comments on commit 9ba1cf5

Please sign in to comment.