Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions .github/workflows/build_wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -187,8 +187,8 @@ jobs:
uses: pypa/cibuildwheel@v2.23.0
env:
CIBW_BEFORE_BUILD:
pip install cython &&
brew install libomp ninja ccache apache-arrow
pip install cython delvewheel ninja ccache apache-arrow &&
brew install libomp
CIBW_ARCHS_MACOS: ${{ matrix.buildplat[1] }}
CIBW_BUILD: ${{ github.event_name == 'release' && 'cp310-* cp311-* cp312-* cp313-*' || 'cp313-*' }}
CIBW_ENVIRONMENT: >
Expand All @@ -199,6 +199,8 @@ jobs:
CCACHE_MAXSIZE=2G
CMAKE_C_COMPILER_LAUNCHER=ccache
CMAKE_CXX_COMPILER_LAUNCHER=ccache
CIBW_REPAIR_WHEEL_COMMAND_MACOS: >
python -m delvewheel repair --exclude-libs libomp -w {dest_dir} {wheel}
CIBW_SKIP: "pp* *-musllinux_*"
CIBW_TEST_COMMAND: python3 -c 'import networkit'
CIBW_TEST_SKIP: "*-macosx_x86_64 *-macosx_universal2:x86_64"
Expand Down
Loading