Skip to content

Commit

Permalink
Bump macos version used to build wheels (#17924)
Browse files Browse the repository at this point in the history
MacOS 12 is end-of-life and GitHub is deprecating support for it
(including doing brown outs). Let's bump to MacOS 13.
  • Loading branch information
erikjohnston authored Nov 13, 2024
1 parent 73dc05c commit e0fdb86
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release-artifacts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-22.04, macos-12]
os: [ubuntu-22.04, macos-13]
arch: [x86_64, aarch64]
# is_pr is a flag used to exclude certain jobs from the matrix on PRs.
# It is not read by the rest of the workflow.
Expand All @@ -121,9 +121,9 @@ jobs:
exclude:
# Don't build macos wheels on PR CI.
- is_pr: true
os: "macos-12"
os: "macos-13"
# Don't build aarch64 wheels on mac.
- os: "macos-12"
- os: "macos-13"
arch: aarch64
# Don't build aarch64 wheels on PR CI.
- is_pr: true
Expand Down
1 change: 1 addition & 0 deletions changelog.d/17924.misc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Bump macos version used to build wheels during release, as current version used is end-of-life.

0 comments on commit e0fdb86

Please sign in to comment.