Skip to content

Commit b17288d

Browse files
committed
skip tests on macOS py<=3.9 for now
1 parent 3fed7c8 commit b17288d

1 file changed

Lines changed: 6 additions & 7 deletions

File tree

pyproject.toml

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,12 @@ manylinux-pypy_aarch64-image = "manylinux_2_28"
2727

2828
[tool.cibuildwheel.linux]
2929
archs = ["x86_64", "aarch64"]
30-
# disabling repair as not possible to since libzim is built
31-
# on Ubuntu focal (20.04) with glic 2.31 while the manylinux images on which we
32-
# build the wheels are only avail up to 2.28
33-
# https://github.com/kiwix/kiwix-build/issues/595
34-
repair-wheel-command = ""
35-
# disabling tests as well as unrepaired wheels cant be tested
36-
test-command = ""
3730

3831
[tool.cibuildwheel.macos]
3932
archs = ["x86_64", "arm64"]
33+
# macOS arm64 is cross-compiled and can not be tested.
34+
# cibuildwheel skips it already. *_arm64 this removes the warning
35+
# skipping tests on cp <=3.9 as the wheels we produce are on unexpected combinations
36+
# because those python versions were released before our building host version
37+
# > requires changing wheel names
38+
test-skip = "*_arm64 cp39* cp38* cp37*"

0 commit comments

Comments
 (0)