From f6efd8bd0802d99d73e8fc8e37713e28f42f6f83 Mon Sep 17 00:00:00 2001 From: bpuchala Date: Tue, 10 Dec 2024 11:55:09 -0500 Subject: [PATCH] Build macos x86_64 wheels with macos-13 Github Actions runner --- .github/workflows/build_wheels.yml | 8 ++++---- CHANGELOG.md | 4 ++++ 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build_wheels.yml b/.github/workflows/build_wheels.yml index f09b30e..cf35a7e 100644 --- a/.github/workflows/build_wheels.yml +++ b/.github/workflows/build_wheels.yml @@ -24,9 +24,9 @@ jobs: name: dist_linux path: ./wheelhouse/*.whl - build_wheels_macos12_x86_64: - name: Build x86_64 wheels on macos-12 - runs-on: macos-12 + build_wheels_macos13_x86_64: + name: Build x86_64 wheels on macos-13 + runs-on: macos-13 steps: - uses: actions/checkout@v4 @@ -38,7 +38,7 @@ jobs: - uses: actions/upload-artifact@v4 with: - name: dist_macos12_x86_64 + name: dist_macos13_x86_64 path: ./wheelhouse/*.whl build_wheels_macos14_arm64: diff --git a/CHANGELOG.md b/CHANGELOG.md index bd4a00d..11f543e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,6 +16,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Added `Lattice.voronoi_table`, `Lattice.voronoi_number`, and `Lattice.voronoi_inner_radius`. +### Changed + +- Build macos x86_64 wheels with macos-13 Github Actions runner + ## [2.0a11] - 2024-08-09