From 87bbdee6cd624770beebdb325f8d589e8c39ff94 Mon Sep 17 00:00:00 2001 From: Darrel O'Pry Date: Mon, 3 Nov 2025 10:59:41 -0500 Subject: [PATCH] chore: exclude invalid djmain/py combinations django 6 drops support for python 3.10 and 3.11 --- .github/workflows/test.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index d45418595..577cb56a5 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -26,6 +26,7 @@ jobs: - '5.1' - '5.2' - 'main' + ## include/exclude combinations, typically for the newest and oldest django/python versions. include: # https://docs.djangoproject.com/en/dev/faq/install/#what-python-version-can-i-use-with-django - python-version: '3.8' @@ -41,6 +42,10 @@ jobs: django-version: '5.0' - python-version: '3.13' django-version: '4.2' + - python-version: '3.10' + django-version: 'main' + - python-version: '3.11' + django-version: 'main' steps: - uses: actions/checkout@v4