From 7dd6ff67014d12d6a1b7b40ec5241c9adfc0e151 Mon Sep 17 00:00:00 2001 From: Christopher Goes Date: Sun, 2 Jun 2024 11:52:01 -0600 Subject: [PATCH] fix macos tests? Man, thought I wouldn't get bit by the "Apple Silicon" issues...lol --- .github/workflows/ci.yml | 6 +++++- tox.ini | 1 + 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 17e1020..df56d38 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -50,7 +50,11 @@ jobs: platform: - ubuntu-20.04 - windows-latest - - macos-latest + # Fix tests failing on MacOS 14+ due to ARM architecture + # https://github.com/actions/setup-python/issues/825 + # TODO: update tests to use ARM MacOS with 14+, add + # architecture to the list of architectures above. + - macos-13 exclude: - platform: ubuntu-20.04 architecture: x86 diff --git a/tox.ini b/tox.ini index dd7f87b..8710a42 100644 --- a/tox.ini +++ b/tox.ini @@ -18,6 +18,7 @@ python = PLATFORM = ubuntu-20.04: linux ubuntu-latest: linux + macos-13: macos macos-latest: macos windows-latest: windows