Skip to content

Commit 970f97a

Browse files
committed
Disable win32 right on CI yaml file
1 parent 7bbb128 commit 970f97a

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.github/workflows/cibuildwheels.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,11 @@ env:
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

2425
jobs:
2526

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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
5454
manylinux-x86_64-image = "manylinux_2_28"
5555
manylinux-aarch64-image = "manylinux_2_28"

0 commit comments

Comments
 (0)