Skip to content

Commit 877ec64

Browse files
committed
eol
1 parent 6cfc1f5 commit 877ec64

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

posthog/exception_integrations/django.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ class DjangoIntegration:
3232
identifier = "django"
3333

3434
def __init__(self, capture_exception_fn=None):
35-
if DJANGO_VERSION < (1, 10):
36-
raise IntegrationEnablingError("Django 1.10 or newer is required.")
35+
if DJANGO_VERSION < (4, 2):
36+
raise IntegrationEnablingError("Django 4.2 or newer is required.")
3737

3838
# TODO: Right now this seems too complicated / overkill for us, but seems like we can automatically plug in middlewares
3939
# which is great for users (they don't need to do this) and everything should just work.

0 commit comments

Comments
 (0)