From fc08fc0fb516cee4529c6d4d0298c7a6fb2db895 Mon Sep 17 00:00:00 2001 From: Baptiste Fontaine Date: Tue, 6 May 2025 11:29:07 +0200 Subject: [PATCH] CI: bump Ubuntu; test on 3.13; drop 3.6 Python 3.6 is not available on Ubuntu 22.04 runners: https://raw.githubusercontent.com/actions/python-versions/main/versions-manifest.json --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 908d688..2bb1db7 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -12,10 +12,10 @@ on: jobs: build: - runs-on: ubuntu-20.04 + runs-on: ubuntu-22.04 strategy: matrix: - python-version: ['3.6', '3.7', '3.8', '3.9', '3.10', '3.11', '3.12'] + python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12', '3.13'] steps: - uses: actions/checkout@v2