From ba520dc5043a9c81e4da9ace63f14f52d113364a Mon Sep 17 00:00:00 2001 From: Alyssa Travitz Date: Fri, 22 Nov 2024 14:49:45 -0800 Subject: [PATCH 1/3] switch from macos-12 pin to macos-latest --- .github/workflows/CI.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/CI.yaml b/.github/workflows/CI.yaml index cb12788..357a28f 100644 --- a/.github/workflows/CI.yaml +++ b/.github/workflows/CI.yaml @@ -31,7 +31,7 @@ jobs: matrix: python-version: ["3.9", "3.10", "3.11"] rdkit-version: ["latest", ] - os: [ubuntu-latest, macos-12] + os: [ubuntu-latest, macos-latest] include: - rdkit-version: "2021" python-version: "3.9" From 837d5b257ebcfcdc74ceb16975491be495c9cf4f Mon Sep 17 00:00:00 2001 From: Alyssa Travitz Date: Mon, 25 Nov 2024 09:52:22 -0800 Subject: [PATCH 2/3] try macos-13 and python 3.12 --- .github/workflows/CI.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/CI.yaml b/.github/workflows/CI.yaml index 357a28f..31d40b5 100644 --- a/.github/workflows/CI.yaml +++ b/.github/workflows/CI.yaml @@ -29,9 +29,9 @@ jobs: strategy: fail-fast: false matrix: - python-version: ["3.9", "3.10", "3.11"] + python-version: ["3.9", "3.10", "3.11", "3.12"] rdkit-version: ["latest", ] - os: [ubuntu-latest, macos-latest] + os: [ubuntu-latest, macos-13, macos-latest] include: - rdkit-version: "2021" python-version: "3.9" From 5d9e3db90572b9f711f27cc95df545a33109de01 Mon Sep 17 00:00:00 2001 From: Alyssa Travitz Date: Mon, 25 Nov 2024 10:19:32 -0800 Subject: [PATCH 3/3] remove macos-13 from matrix --- .github/workflows/CI.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/CI.yaml b/.github/workflows/CI.yaml index 31d40b5..7a88394 100644 --- a/.github/workflows/CI.yaml +++ b/.github/workflows/CI.yaml @@ -31,7 +31,7 @@ jobs: matrix: python-version: ["3.9", "3.10", "3.11", "3.12"] rdkit-version: ["latest", ] - os: [ubuntu-latest, macos-13, macos-latest] + os: [ubuntu-latest, macos-latest] include: - rdkit-version: "2021" python-version: "3.9"