From 84f53831784bf01c67856ab10b5ec8066bb4dee0 Mon Sep 17 00:00:00 2001 From: Dylan Verheul Date: Fri, 6 Oct 2023 15:57:46 +0200 Subject: [PATCH] Fix Django versions in test matrix --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index d7886385..2dc496bb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -88,8 +88,8 @@ python = ["3.11"] [tool.hatch.envs.all.overrides] matrix.django.dependencies = [ {value = "django~=3.2.0", if = ["3.2"]}, - {value = "django~=4.0.0", if = ["4.0"]}, {value = "django~=4.1.0", if = ["4.1"]}, + {value = "django~=4.2.0", if = ["4.2"]}, {value = "django @ git+https://github.com/django/django.git", if = ["main"]}, ]