From 35542cf46fe00a31d8d2e5a63fdc46710e33fe67 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9dric=20Krier?= Date: Sat, 8 Jun 2024 17:10:03 +0200 Subject: [PATCH] Use ubuntu 20.04 for Python 2.7 and 3.6 --- .github/workflows/tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index a25af71..3488d6e 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -4,10 +4,10 @@ on: [push, pull_request] jobs: tests: - runs-on: ubuntu-latest + runs-on: ubuntu-20.04 strategy: matrix: - python-version: [2.7, 3.6, 3.7, 3.8, 3.9, "3.10", "3.11-dev", pypy2, pypy3] + python-version: [2.7, 3.6, 3.7, 3.8, 3.9, "3.10", "3.11", pypy2, pypy3] steps: - uses: actions/checkout@v2