From 571fd6d566e879575579370b39981139d53f8197 Mon Sep 17 00:00:00 2001 From: blag Date: Tue, 9 Jan 2024 02:57:30 -0800 Subject: [PATCH] Add Python 3.12 and Django 5.0 to CI matrix --- .github/workflows/ci.yaml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 529e696b..7dcd37ca 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -30,12 +30,18 @@ jobs: - "3.9" - "3.10" - "3.11" + - "3.12" django: - "3.2.*" - "4.2.*" + - "5.0.*" exclude: - python: "3.11" django: "3.2.*" + - python: "3.8" + django: "5.0.*" + - python: "3.9" + django: "5.0.*" steps: - uses: actions/checkout@v2