include python 3.8/3.9 only with django 4

This commit is contained in:
DavidVadnais 2025-03-18 22:57:23 +00:00
parent 1da3178a70
commit 1eae15bb0f

View File

@ -8,7 +8,14 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12"]
include:
# Explicitly include Python 3.8 and 3.9 only with Django 4
- python-version: "3.8"
django-version: "4"
- python-version: "3.9"
django-version: "4"
# Define the general matrix for Python with Django
python-version: ["3.10", "3.11"]
django-version: ["4", "5"]
steps:
- uses: actions/checkout@v4