From 58363312b6b9e0f6bcf86dc4fe4bd7820c917706 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Steven!=20Ragnar=C3=B6k?= Date: Thu, 18 Jan 2024 13:01:23 -0800 Subject: [PATCH] Update CI platforms. * Drop Python 2 and Bionic * Use 20.04 for 3.6 * Switch ubuntu-latest to 22.04 to match preferred explicit style. * Add Python 3.10, 3.11 * String-ify python versions to avoid 3.10 == 3.1 --- .github/workflows/ci.yaml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 37244295..b36b9557 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -12,12 +12,10 @@ jobs: build: strategy: matrix: - os: [ubuntu-latest, macos-latest] - python: [3.7, 3.8, 3.9] + os: [ubuntu-22.04, macos-latest] + python: ['3.7', '3.8', '3.9', '3.10', '3.11'] include: - - os: ubuntu-18.04 - python: 2.7 - - os: ubuntu-18.04 + - os: ubuntu-20.04 python: 3.6 name: bloom tests runs-on: ${{matrix.os}}