From 1c07eea68890b91ee772f6657b5208337078dcc5 Mon Sep 17 00:00:00 2001 From: alessandrofelder Date: Mon, 29 Apr 2024 14:46:19 +0100 Subject: [PATCH 1/2] run CI on both types of Mac --- .github/workflows/test_and_deploy.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test_and_deploy.yml b/.github/workflows/test_and_deploy.yml index 97663113..077f5787 100644 --- a/.github/workflows/test_and_deploy.yml +++ b/.github/workflows/test_and_deploy.yml @@ -30,7 +30,9 @@ jobs: include: - os: ubuntu-latest python-version: "3.11" - - os: macos-latest + - os: macos-13 # Intel Mac + python-version: "3.10" + - os: macos-latest # ARM Mac python-version: "3.10" - os: windows-latest python-version: "3.9" From 89df34098c0af297a86d5b6f3ee5f937b4a1e9d9 Mon Sep 17 00:00:00 2001 From: Alessandro Felder Date: Mon, 29 Apr 2024 16:24:51 +0100 Subject: [PATCH 2/2] test on py3.11 Co-authored-by: Adam Tyson --- .github/workflows/test_and_deploy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test_and_deploy.yml b/.github/workflows/test_and_deploy.yml index 077f5787..5e46ab07 100644 --- a/.github/workflows/test_and_deploy.yml +++ b/.github/workflows/test_and_deploy.yml @@ -31,7 +31,7 @@ jobs: - os: ubuntu-latest python-version: "3.11" - os: macos-13 # Intel Mac - python-version: "3.10" + python-version: "3.11" - os: macos-latest # ARM Mac python-version: "3.10" - os: windows-latest