From 45e69c4a8922e7c263e742e4cbb5803b97402043 Mon Sep 17 00:00:00 2001 From: Zac Hatfield-Dodds Date: Tue, 8 Oct 2024 21:57:24 -0700 Subject: [PATCH] Fix django min version see also # 4031 to track an automated solution --- hypothesis-python/setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hypothesis-python/setup.py b/hypothesis-python/setup.py index 6915669514..9d684bf848 100644 --- a/hypothesis-python/setup.py +++ b/hypothesis-python/setup.py @@ -71,7 +71,7 @@ def local_file(name): # https://www.djangoproject.com/download/#supported-versions # We also leave the choice of timezone library to the user, since it # might be zoneinfo or pytz depending on version and configuration. - "django": ["django>=3.2"], + "django": ["django>=4.2"], } extras["all"] = sorted(set(sum(extras.values(), [])))