From 36d4b07acba7a532b449de71f2871be6de6efc07 Mon Sep 17 00:00:00 2001 From: Ewald de Wit Date: Sun, 1 Jan 2023 14:55:53 +0100 Subject: [PATCH] Use older Ubuntu for older Pythons --- .github/workflows/test.yml | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 5a6e879..bb5c78a 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -8,10 +8,17 @@ jobs: strategy: matrix: os: [ubuntu, macos, windows] - python-version: [ 3.6, 3.7, 3.8, 3.9, "3.10", pypy-3.9 ] + python-version: [ 3.5, 3.6, 3.7, 3.8, 3.9, "3.10", "3.11", pypy-3.9 ] exclude: - - os: windows - python-version: pypy-3.9 + - os: ubuntu + python-version: 3.5 + - os: ubuntu + python-version: 3.6 + include: + - os: ubuntu-20.04 + python-version: 3.5 + - os: ubuntu-20.04 + python-version: 3.6 steps: - uses: actions/checkout@v3