Skip to content

Commit 54a3959

Browse files
committed
dont build on aarch64 as we dont have bionic builds yet
1 parent 84d1a45 commit 54a3959

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,8 @@ manylinux-pypy_x86_64-image = "manylinux_2_28"
2626
manylinux-pypy_aarch64-image = "manylinux_2_28"
2727

2828
[tool.cibuildwheel.linux]
29-
archs = ["x86_64", "aarch64"]
29+
# TEMP: dont build on aarch64 as we dont have bionic builds yet
30+
archs = ["x86_64"] #, "aarch64"]
3031

3132
[tool.cibuildwheel.macos]
3233
archs = ["x86_64", "arm64"]

setup.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -141,10 +141,6 @@ def get_download_filename(self, arch: Optional[str] = None) -> str:
141141
if self.platform == "Linux":
142142
variant = "-musl" if self.is_musl else "-bionic"
143143

144-
# TODO: remove once fixed online
145-
if arch == "aarch64":
146-
variant = "" # will allow build but fail repair and tests
147-
148144
return pathlib.Path(
149145
f"libzim_{lzplatform}-{arch}{variant}-{self.libzim_dl_version}.tar.gz"
150146
).name

0 commit comments

Comments
 (0)