Skip to content

Commit 05faef5

Browse files
committed
minor fix for brew related warnings
1 parent 6bbc63f commit 05faef5

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/cmake.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
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 }}

.github/workflows/wheels.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
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: >
@@ -66,7 +66,7 @@ jobs:
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

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -141,8 +141,8 @@ BUILD_PYTHON_MODULE = "ON"
141141
# Build wheels for Python 3.9+
142142
build = "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
148148
test-command = "python -c 'import kalign; print(kalign.__version__)'"

0 commit comments

Comments
 (0)