Skip to content

Commit d3561ce

Browse files
authored
Remove macOS 13 from wheel targets and add macOS 15 Intel (#36)
GitHub announced that they are [retiring the macOS 13 runners next month](https://github.blog/changelog/2025-09-19-github-actions-macos-13-runner-image-is-closing-down/). The images affected are: - `macos-13` - `macos-13-large` - `macos-13-xlarge` We may as well stop building them now. Doing so will not only prevent workflows from soon failing: it will also speed up CI. In addition, there are now `macos-15-intel` runners, for macOS on x86_64, so this PR adds that as a new wheel build target.
1 parent a1c6ca7 commit d3561ce

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -58,12 +58,6 @@ jobs:
5858
{os: ubuntu-24.04-arm, dist: cp313-manylinux_aarch64, arch: aarch64},
5959
{os: ubuntu-24.04-arm, dist: cp314-manylinux_aarch64, arch: aarch64},
6060

61-
{os: macos-13, dist: cp310-macosx_x86_64, arch: x86_64, target: '10.15'},
62-
{os: macos-13, dist: cp311-macosx_x86_64, arch: x86_64, target: '10.15'},
63-
{os: macos-13, dist: cp312-macosx_x86_64, arch: x86_64, target: '10.15'},
64-
{os: macos-13, dist: cp313-macosx_x86_64, arch: x86_64, target: '10.15'},
65-
{os: macos-13, dist: cp314-macosx_x86_64, arch: x86_64, target: '10.15'},
66-
6761
{os: macos-14, dist: cp310-macosx_arm64, arch: arm64, target: '11.0'},
6862
{os: macos-14, dist: cp311-macosx_arm64, arch: arm64, target: '11.0'},
6963
{os: macos-14, dist: cp312-macosx_arm64, arch: arm64, target: '11.0'},
@@ -76,6 +70,12 @@ jobs:
7670
{os: macos-15, dist: cp313-macosx_arm64, arch: arm64, target: '11.0'},
7771
{os: macos-15, dist: cp314-macosx_arm64, arch: arm64, target: '11.0'},
7872

73+
{os: macos-15-intel, dist: cp310-macosx_x86_64, arch: x86_64, target: '11.0'},
74+
{os: macos-15-intel, dist: cp311-macosx_x86_64, arch: x86_64, target: '11.0'},
75+
{os: macos-15-intel, dist: cp312-macosx_x86_64, arch: x86_64, target: '11.0'},
76+
{os: macos-15-intel, dist: cp313-macosx_x86_64, arch: x86_64, target: '11.0'},
77+
{os: macos-15-intel, dist: cp314-macosx_x86_64, arch: x86_64, target: '11.0'},
78+
7979
{os: macos-26, dist: cp310-macosx_arm64, arch: arm64, target: '11.0'},
8080
{os: macos-26, dist: cp311-macosx_arm64, arch: arm64, target: '11.0'},
8181
{os: macos-26, dist: cp312-macosx_arm64, arch: arm64, target: '11.0'},

0 commit comments

Comments
 (0)