Skip to content

Commit 72ecde3

Browse files
committed
Remove the build of win32 wheels
1 parent e81febd commit 72ecde3

File tree

1 file changed

+3
-7
lines changed

1 file changed

+3
-7
lines changed

.github/workflows/cibuildwheels.yml

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,14 @@ 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-
CIBW_SKIP: "*musllinux*aarch64*"
21+
# Deactivate the win32 builds, as 32-bit platforms are not supported anymore.
22+
CIBW_SKIP: "*musllinux*aarch64* cp*-win32"
2223

2324
jobs:
2425

2526
build_wheels:
2627
# Only build wheels when tagging (typically a release)
27-
if: startsWith(github.event.ref, 'refs/tags')
28+
# if: startsWith(github.event.ref, 'refs/tags')
2829
name: Build wheels on ${{ matrix.os }} for ${{ matrix.arch }} - ${{ matrix.p_ver }}
2930
runs-on: ${{ matrix.os }}
3031
permissions:
@@ -68,9 +69,6 @@ jobs:
6869
- name: Build wheels
6970
run: |
7071
python -m cibuildwheel --output-dir wheelhouse
71-
# Starting with C-Blosc2 2.11.3, we should not need to deactivate AVX512
72-
#env:
73-
# CIBW_CONFIG_SETTINGS: "--build-option=-DDEACTIVATE_AVX512:BOOL=YES"
7472
7573
- name: Upload wheels
7674
uses: actions/upload-artifact@v3
@@ -119,8 +117,6 @@ jobs:
119117
cd ./dist
120118
tar -xzf blosc2-*.tar.gz
121119
cd ./blosc2-*/
122-
# Starting with C-Blosc2 2.11.3, we should not need to deactivate AVX512
123-
# python setup.py build_ext --inplace -DDEACTIVATE_AVX512:BOOL=YES
124120
python setup.py build_ext --inplace
125121
126122
- name: Test sdist package with pytest

0 commit comments

Comments
 (0)