From ea6e9e7d000d185881cae1b3b28e2d3678ceaf15 Mon Sep 17 00:00:00 2001 From: nightwnvol Date: Wed, 13 Mar 2024 14:55:20 +0100 Subject: [PATCH] ci: remove python 3.12 from tests --- .github/workflows/run_tests.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/run_tests.yml b/.github/workflows/run_tests.yml index fe253b4..4d48a0e 100644 --- a/.github/workflows/run_tests.yml +++ b/.github/workflows/run_tests.yml @@ -5,21 +5,22 @@ jobs: run_test: strategy: matrix: + # NOTE: Python 3.12 is not supported yet config: [ {os: ubuntu-latest, py: '3.8'}, {os: ubuntu-latest, py: '3.9'}, {os: ubuntu-latest, py: '3.10'}, {os: ubuntu-latest, py: '3.11'}, - {os: ubuntu-latest, py: '3.12'}, + # {os: ubuntu-latest, py: '3.12'}, {os: macos-latest, py: '3.8'}, {os: macos-latest, py: '3.9'}, {os: macos-latest, py: '3.10'}, {os: macos-latest, py: '3.11'}, - {os: macos-latest, py: '3.12'}, + # {os: macos-latest, py: '3.12'}, {os: macos-14, py: '3.10'}, {os: macos-14, py: '3.11'}, - {os: macos-14, py: '3.12'} + # {os: macos-14, py: '3.12'} ] name: Python ${{ matrix.config.py }} on ${{ matrix.config.os }} runs-on: ${{ matrix.config.os }}