Updated CI to test with older Python versions.

This commit is contained in:
Teal Dulcet 2025-02-01 03:55:27 -08:00
parent 2087d569c0
commit 9db5a657e5

View File

@ -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