From c07e8b6e58ca4f34b6af8a0332b7c006a3b987de Mon Sep 17 00:00:00 2001 From: Jan Pieter Waagmeester Date: Tue, 17 Oct 2023 11:15:49 +0200 Subject: [PATCH] Add support for Django 5.0 and Python 3.12 --- .github/workflows/ci.yml | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4634e426..2c2797cd 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -29,13 +29,24 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [3.8, 3.9, "3.10", 3.11] - django-version: [3.2, 4.1, 4.2] + python-version: [3.8, 3.9, "3.10", 3.11, 3.12] + django-version: [3.2, 4.1, 4.2, "5.0a1"] exclude: + # Django 3.2 - python-version: "3.10" django-version: 3.2 - python-version: 3.11 django-version: 3.2 + - python-version: 3.12 + django-version: 3.2 + + # Django 4.1 + - python-version: 3.12 + django-version: 4.1 + + # Django 4.2 + - python-version: 3.12 + django-version: 4.2 steps: - name: Set up Python ${{ matrix.python-version }}