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
5 changes: 4 additions & 1 deletion .github/workflows/pypi_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ jobs:
matrix:
os:
- ubuntu-latest
- ubuntu-24.04-arm
- macos-13 # intel
- macos-14 # apple silicon
steps:
Expand All @@ -51,8 +52,9 @@ jobs:
env:
CIBW_SKIP: pp* *musllinux* cp36-* cp37-*
CIBW_BEFORE_BUILD_LINUX: yum -y install boost-devel
CIBW_ARCHS_LINUX: "x86_64"
CIBW_ARCHS_LINUX: ${{ fromJSON('["x86_64", "aarch64"]')[matrix.os == 'ubuntu-24.04-arm'] }} # poor man ternary https://github.com/orgs/community/discussions/25725#discussioncomment-3248924
CIBW_MANYLINUX_X86_64_IMAGE: manylinux_2_28
CIBW_MANYLINUX_AARCH64_IMAGE: manylinux_2_28
CIBW_BEFORE_BUILD_MACOS: brew install boost # should be ok as we only use headers
MACOSX_DEPLOYMENT_TARGET: 10.15
with:
Expand All @@ -71,6 +73,7 @@ jobs:
matrix:
os:
- ubuntu-latest
- ubuntu-24.04-arm
- macos-13 # intel
- macos-14 # apple silicon
steps:
Expand Down
Loading