From 902b1e27f0ddfb88cf75ae3da7efae06b2e40b31 Mon Sep 17 00:00:00 2001 From: ftsell Date: Wed, 17 Jan 2024 17:05:23 +0100 Subject: [PATCH] update test matrix to include django 5.0 --- .github/workflows/checks.yml | 7 +++++-- pyproject.toml | 2 +- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/checks.yml b/.github/workflows/checks.yml index 046a71b..27ab4bf 100644 --- a/.github/workflows/checks.yml +++ b/.github/workflows/checks.yml @@ -31,9 +31,12 @@ jobs: strategy: fail-fast: false matrix: - py_version: [ "3.9", "3.10", "3.11" ] - django_version: ["3.2", "4.0", "4.1"] + py_version: ["3.9", "3.10", "3.11"] drf_version: ["3.13", "3.14"] + django_version: + - "3.2" # LTS + - "4.2" # LTS + - "5.0" # current runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 diff --git a/pyproject.toml b/pyproject.toml index 9f2f6de..1f67bed 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -29,7 +29,7 @@ dependencies = [ [project.optional-dependencies] django = [ - "django>=3.2,<5.0", + "django>=3.2", ] djangorestframework = [ "djangorestframework~=3.13",