From 223a1855ac70ea2b6ab89a8e228f7b2f2dc5c8f1 Mon Sep 17 00:00:00 2001 From: Alex Ciobanu Date: Tue, 9 Jul 2024 10:26:17 -0400 Subject: [PATCH 1/2] Enable to building of arm64 macOS builds. Because of deprecation of macos-11 runners, switched to macos-12 for x86_64 builds. Also switched from using `apt-get install` to `apt install` command for Ubuntu, since apt-get seem to not be available any more. --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3ad892f24..99e6dcfd3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -126,7 +126,7 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - os: [ubuntu-20.04, windows-2019, macOS-11] + os: [ubuntu-20.04, windows-2019, macos-12, macos-latest ] steps: - uses: actions/checkout@v3 @@ -162,8 +162,8 @@ jobs: uses: pypa/cibuildwheel@v2.17.0 # to supply options, put them in 'env', like: env: - CIBW_SKIP: cp36-* cp37-* pp36-* pp37-* *p38-*_aarch64 *p39-*_aarch64 *p310-*_aarch64 pp*_aarch64 *musllinux*_aarch64 - CIBW_BEFORE_ALL_LINUX: apt-get install -y gcc || yum install -y gcc || apk add gcc + CIBW_SKIP: cp36-* cp37-* pp36-* pp37-* *p38-*_aarch64 cp38-*_arm64 *p39-*_aarch64 *p310-*_aarch64 pp*_aarch64 *musllinux*_aarch64 + CIBW_BEFORE_ALL_LINUX: apt install -y gcc || yum install -y gcc || apk add gcc CIBW_ARCHS_LINUX: auto aarch64 CIBW_BUILD_VERBOSITY: 3 REQUIRE_CYTHON: 1 From 95f12b1b671d96bed19b64f49d59ea1044b2fea5 Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Mon, 26 Aug 2024 14:27:49 -1000 Subject: [PATCH 2/2] chore: lint --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 99e6dcfd3..a71d030c7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -126,7 +126,7 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - os: [ubuntu-20.04, windows-2019, macos-12, macos-latest ] + os: [ubuntu-20.04, windows-2019, macos-12, macos-latest] steps: - uses: actions/checkout@v3