Skip to content
Draft
Show file tree
Hide file tree
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
7 changes: 4 additions & 3 deletions .github/workflows/build-wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -161,8 +161,9 @@ jobs:
declare -A hashmap
hashmap[manylinux_x86_64]="ubuntu-22.04"
hashmap[manylinux_aarch64]="ubuntu-22.04-arm"
hashmap[macosx_x86_64]="macos-13-large"
hashmap[macosx_arm64]="macos-13-xlarge"
# TODO: use self hosted runner for macos x86?
hashmap[macosx_x86_64]="macos-15-intel"
hashmap[macosx_arm64]="macos-14"
hashmap[win_amd64]="windows-2022"
echo runner_os=${hashmap[${{ inputs.platform-tag }}]} >> $GITHUB_OUTPUT
# Bash >= 4 supports hashmaps
Expand Down Expand Up @@ -275,7 +276,7 @@ jobs:
# the openssl library version is newer than the wheel's macOS version tag
# Linking the static libraries produces a warning for that same reason but it doesn't throw an error.
# - Use single dash for backwards compatibility with older sw_vers
run: echo MACOSX_DEPLOYMENT_TARGET=$(sw_vers -productVersion | cut -d"." -f 1).0 >> $GITHUB_ENV
run: echo MACOSX_DEPLOYMENT_TARGET=14.0 >> $GITHUB_ENV

- if: ${{ inputs.platform-tag == 'macosx_arm64' }}
name: Ensure that linker can find brew packages
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/stage-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,6 @@ jobs:
matrix:
runner-os: [
# These larger runners run on intel
macos-14-large,
macos-15-large
]
python-version: [
Expand Down
Loading