From 9ca0ff8fe434e5192d3f671cccf862291ebf94be Mon Sep 17 00:00:00 2001 From: rhatgadkar-goog Date: Mon, 6 Jan 2025 19:26:26 +0000 Subject: [PATCH] Change to use macos-12 in tests.yml --- .github/workflows/tests.yaml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index 8c487349..41d62552 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -37,7 +37,11 @@ jobs: pull-requests: write strategy: matrix: - os: [macos-latest, windows-latest, ubuntu-latest] + # psycopg 2.9.10 isn't supported on Python 3.9 for macos-14. See + # https://github.com/psycopg/psycopg2/issues/1737. So we are using + # macos-12 for now. When Python 3.9 reaches end-of-life, we should + # change this back to macos-latest. + os: [macos-12, windows-latest, ubuntu-latest] python-version: ["3.9", "3.13"] fail-fast: false steps: