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 1afaf6b commit 2c00aacCopy full SHA for 2c00aac
sentry_sdk/integrations/__init__.py
@@ -1,5 +1,6 @@
1
from abc import ABC, abstractmethod
2
from threading import Lock
3
+import sys
4
5
from sentry_sdk.utils import logger
6
@@ -73,6 +74,11 @@ def iter_default_integrations(with_auto_enabling_integrations):
73
74
"sentry_sdk.integrations.threading.ThreadingIntegration",
75
]
76
77
+if sys.version_info >= (3, 8):
78
+ _DEFAULT_INTEGRATIONS.append(
79
+ "sentry_sdk.integrations.unraisablehook.UnraisablehookIntegration"
80
+ )
81
+
82
_AUTO_ENABLING_INTEGRATIONS = [
83
"sentry_sdk.integrations.aiohttp.AioHttpIntegration",
84
"sentry_sdk.integrations.anthropic.AnthropicIntegration",
0 commit comments