From 354668143f844f3d066dd476a3c8fe51b4030f26 Mon Sep 17 00:00:00 2001 From: Pierre Ossman Date: Tue, 22 Aug 2023 16:53:30 +0200 Subject: [PATCH] Use Ubuntu 20.04 runner for tests GitHub has deprecated 18.04, so we can't continue running tests on that old distribution. Unfortunately, we can't switch to the latest 22.04 since GitHub doesn't package anything older than Python 3.7 for that runner. And unfortunately the oldest version in 20.04 is Python 3.5, so we have to remove the test runs for Python 3.4. --- .github/workflows/test.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index e7bdb5ae..34b01c9c 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -4,11 +4,10 @@ on: [push, pull_request] jobs: test: - runs-on: ubuntu-18.04 + runs-on: ubuntu-20.04 strategy: matrix: python-version: - - 3.4 - 3.5 - 3.6 - 3.7