From 7626ece46e16c7a59c66adf46cd5ac444dadee79 Mon Sep 17 00:00:00 2001 From: Stephen Early Date: Tue, 9 Apr 2024 23:26:40 +0100 Subject: [PATCH] Remove ubuntu-20.04, python 3.6 and python 3.7 from CI Ubuntu 20.04 only has libxkbcommon-0.8, and we are preparing to require libxkbcommon-1.0 Python 3.6 and Python 3.7 are no longer supported. Add Python 3.12 to CI --- .github/workflows/run-tests.yml | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 9fa3295..79bfb3f 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -7,11 +7,8 @@ jobs: strategy: matrix: - os: ['ubuntu-20.04', 'ubuntu-22.04'] - python-version: ['3.6', '3.7', '3.8', '3.9', '3.10', '3.11'] - exclude: - - os: 'ubuntu-22.04' - python-version: '3.6' + os: ['ubuntu-22.04'] + python-version: ['3.8', '3.9', '3.10', '3.11', '3.12'] runs-on: ${{ matrix.os }}