We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6cfc1f5 commit 877ec64Copy full SHA for 877ec64
posthog/exception_integrations/django.py
@@ -32,8 +32,8 @@ class DjangoIntegration:
32
identifier = "django"
33
34
def __init__(self, capture_exception_fn=None):
35
- if DJANGO_VERSION < (1, 10):
36
- raise IntegrationEnablingError("Django 1.10 or newer is required.")
+ if DJANGO_VERSION < (4, 2):
+ raise IntegrationEnablingError("Django 4.2 or newer is required.")
37
38
# TODO: Right now this seems too complicated / overkill for us, but seems like we can automatically plug in middlewares
39
# which is great for users (they don't need to do this) and everything should just work.
0 commit comments