Skip to content

Commit

Permalink
chore: add support for packaging Linux ARM64 wheels
Browse files Browse the repository at this point in the history
Verified installs on Ubuntu Jammy and Alpine 3.19 (aarch64)
  • Loading branch information
nisimond authored and retr0h committed Jan 30, 2024
1 parent 04a5d2d commit cffa06b
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions python/dist2wheel.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,15 @@ def _matrix(self):
f"{self.py_tag}-{self.abi_tag}-musllinux_1_1_x86_64",
],
},
"arm64": {
"arch": "aarch64",
"platform": "manylinux2014_aarch64.manylinux_2_17_aarch64.musllinux_1_1_aarch64",
"tags": [
f"{self.py_tag}-{self.abi_tag}-manylinux2014_aarch64",
f"{self.py_tag}-{self.abi_tag}-manylinux_2_17_aarch64",
f"{self.py_tag}-{self.abi_tag}-musllinux_1_1_aarch64",
],
},
"386": {
"arch": "i686",
"platform": "manylinux2014_i686.manylinux_2_17_i686.musllinux_1_1_i686",
Expand Down

0 comments on commit cffa06b

Please sign in to comment.