From fa400efaba04526586a40aefd30156458c95d509 Mon Sep 17 00:00:00 2001 From: Leonardo Uieda Date: Tue, 3 Sep 2024 09:46:01 -0300 Subject: [PATCH] Use pre-ARM Mac images to test oldest dependencies The older dependencies don't have ARM builds and so the tests fail on oldest dependencies with the latest Mac images. --- .github/workflows/test.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 283fadc..dcdc37d 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -38,13 +38,20 @@ jobs: # run all of them to catch failures in different combinations. fail-fast: false matrix: - os: [ubuntu, macos, windows] + os: [ubuntu-latest, windows-latest] python: ["3.9", "3.12"] include: - python: "3.9" dependencies: oldest - python: "3.12" dependencies: latest + # Have to use older mac because older dependencies don't have ARM builds + - os: macos-13 + dependencies: oldest + python: "3.9" + - os: macos-latest + dependencies: latest + python: "3.12" env: REQUIREMENTS: env/requirements-build.txt env/requirements-test.txt # Used to tag codecov submissions