From 9db5a657e5630a196da6fdd7a18c10fb7442d846 Mon Sep 17 00:00:00 2001 From: Teal Dulcet Date: Sat, 1 Feb 2025 03:55:27 -0800 Subject: [PATCH] Updated CI to test with older Python versions. --- .github/workflows/ci.yml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8bbac64..0b590ba 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -75,10 +75,16 @@ jobs: Python: name: Linux Python - runs-on: ubuntu-latest + runs-on: ${{ matrix.os }} strategy: matrix: - python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "pypy3.7", "pypy3.8", "pypy3.9", "pypy3.10"] + os: [ubuntu-latest] + python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "pypy3.6", "pypy3.7", "pypy3.8", "pypy3.9", "pypy3.10"] + include: + - os: ubuntu-22.04 + python-version: "3.7" + - os: ubuntu-20.04 + python-version: "3.6" fail-fast: false steps: - uses: actions/checkout@v4