From 205e16d25dc717d492e4613891ce8d112990621f Mon Sep 17 00:00:00 2001 From: Mike <22396211+Dresdn@users.noreply.github.com> Date: Mon, 30 Oct 2023 09:15:41 -0700 Subject: [PATCH] ci(test): update Django versions in testing matrix - Removed Django 4.0 from the testing matrix. - Added Django 4.2 to the testing matrix. --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 80039e8..1b03b59 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -8,7 +8,7 @@ jobs: strategy: matrix: python-version: ["3.8", "3.9", "3.10", "3.11"] - django-version: ["3.2", "4.0", "4.1"] + django-version: ["3.2", "4.1", "4.2"] steps: - uses: actions/checkout@v4