File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 4040 - name : Install dependencies (macOS)
4141 if : runner.os == 'macOS'
4242 run : |
43- brew install libomp cmake
43+ brew install --formula libomp cmake
4444
4545 - name : Configure CMake
4646 run : cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{ matrix.build_type }}
Original file line number Diff line number Diff line change 4848 - name : Build wheels
4949 env :
5050 CIBW_BUILD : cp39-* cp310-* cp311-* cp312-* cp313-*
51- CIBW_SKIP : " *-win32 *-manylinux_i686 *-musllinux* pp* "
51+ CIBW_SKIP : " *-win32 *-manylinux_i686 *-musllinux*"
5252 CIBW_ARCHS : ${{ matrix.cibw_archs }}
5353 # Set minimum macOS version to match OpenMP requirements
5454 CIBW_ENVIRONMENT_MACOS : >
6666
6767 # macOS specific settings
6868 CIBW_BEFORE_ALL_MACOS : |
69- brew install cmake libomp || echo "Dependencies may already be installed"
69+ brew install --formula cmake libomp || echo "Dependencies may already be installed"
7070 CIBW_REPAIR_WHEEL_COMMAND_MACOS : >
7171 delocate-wheel --require-archs {delocate_archs} -w {dest_dir} -v {wheel}
7272
Original file line number Diff line number Diff line change @@ -141,8 +141,8 @@ BUILD_PYTHON_MODULE = "ON"
141141# Build wheels for Python 3.9+
142142build = " cp39-* cp310-* cp311-* cp312-* cp313-*"
143143
144- # Skip 32-bit builds and PyPy
145- skip = " *-win32 *-manylinux_i686 pp* "
144+ # Skip 32-bit builds ( PyPy wheels are not built by default)
145+ skip = " *-win32 *-manylinux_i686"
146146
147147# Test command
148148test-command = " python -c 'import kalign; print(kalign.__version__)'"
You can’t perform that action at this time.
0 commit comments