File tree Expand file tree Collapse file tree 1 file changed +3
-7
lines changed
Expand file tree Collapse file tree 1 file changed +3
-7
lines changed Original file line number Diff line number Diff line change 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
2324jobs :
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 :
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
You can’t perform that action at this time.
0 commit comments