File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed
Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 1616 CIBW_TEST_REQUIRES : pytest psutil
1717 CIBW_TEST_COMMAND : python -m pytest -m "not heavy" {project}/tests
1818 # Running the tests on the next platforms takes too much time.
19- CIBW_TEST_SKIP : " *macosx*x86_64* * linux*aarch64*"
19+ CIBW_TEST_SKIP : " *linux*aarch64*"
2020 # Building for musllinux and aarch64 takes way too much time.
2121 # NumPy is adding musllinux for just x86_64 too, so this is not too bad.
22- CIBW_SKIP : " *musllinux*aarch64*"
22+ # For some reason, we need to disable the cp*-win32 builds here too (and not only in pyproject.toml).
23+ CIBW_SKIP : " *musllinux*aarch64* cp*-win32"
2324
2425jobs :
2526
Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ documentation = "https://www.blosc.org/python-blosc2/python-blosc2.html"
4949
5050[tool .cibuildwheel ]
5151# Skip unsupported python versions as well as 32-bit platforms, which are not supported anymore.
52- skip = " cp36-* cp37-* pp37-* cp38-* pp38-* cp39-* pp39-* *-manylinux_i686 *-win32 *_ppc64le *_s390x"
52+ skip = " cp36-* cp37-* pp37-* cp38-* pp38-* cp39-* pp39-* *-manylinux_i686 cp *-win32 *_ppc64le *_s390x"
5353# Let's use a more recent version of the manylinux image for more modern compilers
5454manylinux-x86_64-image = " manylinux_2_28"
5555manylinux-aarch64-image = " manylinux_2_28"
You can’t perform that action at this time.
0 commit comments