We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ebd77f2 commit a9d4b26Copy full SHA for a9d4b26
sentry_sdk/integrations/__init__.py
@@ -1,6 +1,7 @@
1
from __future__ import annotations
2
from abc import ABC, abstractmethod
3
from threading import Lock
4
+import sys
5
6
from sentry_sdk.utils import logger
7
@@ -74,6 +75,11 @@ def iter_default_integrations(
74
75
"sentry_sdk.integrations.threading.ThreadingIntegration",
76
]
77
78
+if sys.version_info >= (3, 8):
79
+ _DEFAULT_INTEGRATIONS.append(
80
+ "sentry_sdk.integrations.unraisablehook.UnraisablehookIntegration"
81
+ )
82
+
83
_AUTO_ENABLING_INTEGRATIONS = [
84
"sentry_sdk.integrations.aiohttp.AioHttpIntegration",
85
"sentry_sdk.integrations.anthropic.AnthropicIntegration",
0 commit comments