From e6953019d6ab7858693a367cde7ee966cc8168bf Mon Sep 17 00:00:00 2001 From: awais qureshi Date: Tue, 13 Jan 2026 19:31:40 +0500 Subject: [PATCH] chore: adding django6.0 in matrix. --- .github/workflows/lint-and-test.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/lint-and-test.yml b/.github/workflows/lint-and-test.yml index 0f2ac9c..9335ff2 100644 --- a/.github/workflows/lint-and-test.yml +++ b/.github/workflows/lint-and-test.yml @@ -27,7 +27,13 @@ jobs: strategy: matrix: python_version: ["3.10", "3.11", "3.12", "3.13", "3.14"] - django_version: ["4.2", "5.1", "5.2"] + django_version: ["4.2", "5.1", "5.2", "6.0"] + exclude: + # Django 6.0 does not support Python 3.10 and 3.11 + - python_version: "3.10" + django_version: "6.0" + - python_version: "3.11" + django_version: "6.0" runs-on: ubuntu-latest