From c01b18cd3258165cf7ca9585c9b3856755c0f94a Mon Sep 17 00:00:00 2001 From: Vojtech Trefny Date: Wed, 12 Feb 2025 07:57:23 +0100 Subject: [PATCH] ci: Bump Ubuntu version for Python unit tests Ubuntu 20.04 will be removed from GH actions by April 1, 2025. We can switch to 22.04 which still has Python 2. Unfortunately 3.6 is not supported on 22.04 so we need to remove it. --- .github/workflows/python-unit-test.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/python-unit-test.yml b/.github/workflows/python-unit-test.yml index 33853ebf..1e06aaee 100644 --- a/.github/workflows/python-unit-test.yml +++ b/.github/workflows/python-unit-test.yml @@ -20,9 +20,7 @@ jobs: matrix: pyver_os: - ver: "2.7" - os: ubuntu-20.04 - - ver: "3.6" - os: ubuntu-20.04 + os: ubuntu-22.04 - ver: "3.8" os: ubuntu-latest - ver: "3.9"