From a23bbbf7eed7e3111e4ad29dd1a920299bf31587 Mon Sep 17 00:00:00 2001 From: Scott K Logan Date: Fri, 9 Feb 2024 20:28:24 -0600 Subject: [PATCH 1/2] Update CI testing matrix * Drop Python 2.7 * Switch Python 3.6 to Focal * Add Python 3.11, 3.12 * Add Windows --- .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 71e09a59..e96e4310 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -9,12 +9,10 @@ jobs: build: strategy: matrix: - os: [ubuntu-latest, macos-latest] - python: ['3.7', '3.8', '3.9', '3.10'] + os: [ubuntu-latest, macos-latest, windows-latest] + 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}} From be4c80036de518e5f952b9131129175441a1dcc3 Mon Sep 17 00:00:00 2001 From: Scott K Logan Date: Fri, 9 Feb 2024 20:31:24 -0600 Subject: [PATCH 2/2] Not ready for Windows quite yet... --- .github/workflows/ci.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index e96e4310..724c42ff 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -9,7 +9,7 @@ jobs: build: strategy: matrix: - os: [ubuntu-latest, macos-latest, windows-latest] + os: [ubuntu-latest, macos-latest] python: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12'] include: - os: ubuntu-20.04