From b79419d82b7d77fb2ab956ea28e3148128ac850b Mon Sep 17 00:00:00 2001 From: Mike Alfare Date: Wed, 6 Nov 2024 14:57:21 -0500 Subject: [PATCH] test macos-14 on py310 instead of py39 due to missing psycopg2-binary --- .github/workflows/integration.yml | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index 108690636..ee6bcf2ef 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -90,17 +90,14 @@ jobs: fail-fast: false max-parallel: 3 matrix: - os: [ubuntu-22.04, macos-14, windows-2022] - python-version: ["3.9"] + os: ubuntu-22.04 + python-version: ["3.9", "3.10", "3.11", "3.12"] include: - - os: ubuntu-22.04 - python-version: "3.9" - - os: ubuntu-22.04 + # psycopg2-binary doesn't have a precompiled wheel for python 3.9 for macos-14 + - os: macos-14 python-version: "3.10" - - os: ubuntu-22.04 - python-version: "3.11" - - os: ubuntu-22.04 - python-version: "3.12" + - os: windows-2022 + python-version: "3.9" env: TOXENV: integration-redshift