From 7cbd39e415ac2c631c9875691476f8cfc33bc762 Mon Sep 17 00:00:00 2001 From: Scott K Logan Date: Mon, 12 Feb 2024 09:21:21 -0600 Subject: [PATCH] Update CI testing matrix (#264) * Drop Python 2.7 * Switch Python 3.6 to Focal * Add Python 3.11, 3.12 --- .github/workflows/ci.yaml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 71e09a59..724c42ff 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -10,11 +10,9 @@ jobs: strategy: matrix: os: [ubuntu-latest, macos-latest] - python: ['3.7', '3.8', '3.9', '3.10'] + python: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12'] include: - - os: ubuntu-18.04 - python: '2.7' - - os: ubuntu-18.04 + - os: ubuntu-20.04 python: '3.6' name: rospkg tests runs-on: ${{matrix.os}}