From 156d63f4fcdbbd82e07d60509982491e4f1f4d9c Mon Sep 17 00:00:00 2001 From: Morgan Aubert Date: Sat, 27 May 2023 20:59:52 -0400 Subject: [PATCH] Ensure project is tested using Python 3.11 and Django 4.2 --- .github/workflows/ci.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 95494c2a..27908f94 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -40,11 +40,13 @@ jobs: 3.8, 3.9, '3.10', + '3.11', ] django-version: [ "django>=3.2,<4.0", "django>=4.0,<4.1", - "django>=4.1,<4.2" + "django>=4.1,<4.2", + "django>=4.2,<5.0", ] db: [ 'mysql', @@ -56,6 +58,8 @@ jobs: django-version: "django>=4.0,<4.1" - python-version: 3.7 django-version: "django>=4.1,<4.2" + - python-version: 3.7 + django-version: "django>=4.2,<5.0" steps: - uses: actions/checkout@v2