Skip to content

Commit fa7aae3

Browse files
committed
feat: add linux aarch64 and armv7 wheels
1 parent ee18a86 commit fa7aae3

File tree

3 files changed

+10
-2
lines changed

3 files changed

+10
-2
lines changed

.github/workflows/release.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,14 @@ jobs:
6262
args: "--skip-existing --target universal2-apple-darwin"
6363
- os: windows-latest
6464
args: "--skip-existing"
65+
# Linux aarch64 abi3
66+
- os: ubuntu-latest
67+
target: "aarch64-unknown-linux-gnu"
68+
args: "--skip-existing --target aarch64-unknown-linux-gnu --zig"
69+
# Linux armv7 abi3
70+
- os: ubuntu-latest
71+
target: "armv7-unknown-linux-gnueabihf"
72+
args: "--skip-existing --target armv7-unknown-linux-gnueabihf --zig"
6573
steps:
6674
- uses: actions/checkout@v4
6775
- uses: actions/setup-python@v5

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "fastquadtree"
3-
version = "0.6.0"
3+
version = "0.6.1"
44
edition = "2021"
55

66
[lib]

0 commit comments

Comments
 (0)