From 613a182c324528360df205b1b206bac4fb38999f Mon Sep 17 00:00:00 2001 From: Jim Garrison Date: Wed, 24 Apr 2024 12:10:13 -0400 Subject: [PATCH] Bump macos-latest python version This is due to python 3.8 no longer being available on the macos-latest CI runner. This also restores the ubuntu minimum version to 3.8 so that we test on 3.8 somewhere. https://github.com/Qiskit-Extensions/circuit-knitting-toolbox/issues/515#issuecomment-2073378582 We might see intermittent CI failures again until #556 is merged (expected to be very soon). --- .github/workflows/test_latest_versions.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test_latest_versions.yml b/.github/workflows/test_latest_versions.yml index c24a56bb3..615a257eb 100644 --- a/.github/workflows/test_latest_versions.yml +++ b/.github/workflows/test_latest_versions.yml @@ -20,10 +20,10 @@ jobs: max-parallel: 4 matrix: os: [ubuntu-latest] - python-version: ["3.9", "3.12"] + python-version: ["3.8", "3.12"] include: - os: macos-latest - python-version: "3.8" + python-version: "3.11" - os: windows-latest python-version: "3.10" steps: