From a5e25f1690db9a778f8e7dc94edc1b7e3e57f02c Mon Sep 17 00:00:00 2001 From: Florent Viard Date: Mon, 20 Jan 2025 03:04:23 +0100 Subject: [PATCH] ci: change python matrix to add 3.13 and use older ubuntu for python3.7 Fixes #1411 --- .github/workflows/test.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index ba8a7f6c..c0ea4823 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -4,11 +4,16 @@ on: [push, pull_request, workflow_dispatch] jobs: test: - runs-on: ubuntu-latest strategy: matrix: - python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12'] + os: + - ubuntu-latest + python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13'] + include: + - python-version: '3.7' + os: ubuntu-22.04 fail-fast: false + runs-on: ${{ matrix.os }} env: cache-revision: 2 steps: