Skip to content

Commit 4c48ad3

Browse files
committed
Move the skip on win32 build to pyproject for generality
1 parent d74cc92 commit 4c48ad3

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

.github/workflows/cibuildwheels.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,7 @@ env:
1818
CIBW_TEST_SKIP: "*macosx*arm64*"
1919
# Building for musllinux and aarch64 takes way too much time.
2020
# NumPy is adding musllinux for just x86_64 too, so this is not too bad.
21-
# Deactivate the win32 builds, as 32-bit platforms are not supported anymore.
22-
CIBW_SKIP: "*musllinux*aarch64* cp*-win32"
21+
CIBW_SKIP: "*musllinux*aarch64*"
2322

2423
jobs:
2524

RELEASE_NOTES.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,9 @@
2424

2525
* Internal C-Blosc2 updated to 2.15.0.
2626

27+
* 32-bit platforms are officially unsupported now. If you need support for 32-bit platforms,
28+
please use python-blosc 1.x series.
29+
2730
## Changes from 2.6.1 to 2.6.2
2831

2932
* Protection when platforms have just one CPU. This caused the

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,8 @@ homepage = "https://github.com/Blosc/python-blosc2"
4848
documentation = "https://www.blosc.org/python-blosc2/python-blosc2.html"
4949

5050
[tool.cibuildwheel]
51-
skip = "cp36-* cp37-* pp37-* cp38-* pp38-* cp39-* pp39-* *-manylinux_i686 *_ppc64le *_s390x"
51+
# 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"
5253
# Let's use a more recent version of the manylinux image for more modern compilers
5354
manylinux-x86_64-image = "manylinux_2_28"
5455
manylinux-aarch64-image = "manylinux_2_28"

0 commit comments

Comments
 (0)