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
10 changes: 5 additions & 5 deletions .github/workflows/python-cibuildwheel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,14 @@ jobs:
strategy:
fail-fast: false
matrix:
# macos-13: x86, macos-14: Arm64
os: [ubuntu-22.04, ubuntu-24.04-arm, macos-13, macos-14]
# macos-15-intel: x86, macos-14: Arm64
os: [ubuntu-22.04, ubuntu-24.04-arm, macos-15-intel, macos-14]
# skip pypy, https://github.com/pypa/distutils/issues/283
flavor: ['cpython']
# separate musl and many on linux, for mac we just skip one of those
target: [ 'many', 'musl' ]
exclude:
- os: macos-13
- os: macos-15-intel
target: musl
- os: macos-14
target: musl
Expand Down Expand Up @@ -63,10 +63,10 @@ jobs:
brew list -1 | grep python | while read formula; do brew unlink $formula; brew link --overwrite $formula; done && \
brew install ccache zlib snappy boost

- name: set mac deployment target X64
- name: set mac deployment target
if: runner.os == 'macOS' && runner.arch == 'X64'
run: |
echo "MACOSX_DEPLOYMENT_TARGET=13.0" >> $GITHUB_ENV
echo "MACOSX_DEPLOYMENT_TARGET=15.0" >> $GITHUB_ENV

- name: set mac deployment target arm64
if: runner.os == 'macOS' && runner.arch == 'ARM64'
Expand Down
Loading