Skip to content

Commit e505c78

Browse files
committed
Add Windows/x86_64 entry for Python CI.
1 parent a628b34 commit e505c78

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

.github/workflows/python.yaml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,12 @@ jobs:
1414
include:
1515
- os: ubuntu-24.04
1616
target: x86_64
17-
cross: false
1817
- os: ubuntu-24.04-arm
1918
target: aarch64
20-
cross: false
2119
- os: macos-15
2220
target: universal2
23-
cross: false
21+
- os: windows-2025
22+
target: x86_64
2423

2524
steps:
2625
- name: checkout
@@ -43,10 +42,9 @@ jobs:
4342
pip3 install delocate
4443
delocate-wheel -v dist/*.whl
4544
- name: install built wheel
46-
if: ${{ ! matrix.cross }}
4745
run: |
4846
pip3 install miniacd --find-links dist
49-
python3 -c "import miniacd"
47+
miniacd --help
5048
- name: upload wheels
5149
uses: actions/upload-artifact@v4
5250
with:

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ approx = "0.5.1"
1818
clap = { version = "4.5.49", features = ["cargo"] }
1919
indicatif = "0.18.0"
2020
kiddo = { version = "5.2.2", features = ["simd"] }
21-
mimalloc = "0.1.48"
21+
mimalloc = { version = "0.1.48", features = ["v3"] }
2222
nalgebra = { version = "0.34.1", features = ["rand"] }
2323
parry3d-f64 = { version = "0.25", features = ["parallel"] }
2424
pyo3 = { version = "0.26.0", features = ["abi3-py39", "extension-module"] }

0 commit comments

Comments
 (0)