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 5e8508f commit 1efdd0cCopy full SHA for 1efdd0c
sentry_sdk/integrations/__init__.py
@@ -1,6 +1,5 @@
1
from abc import ABC, abstractmethod
2
from threading import Lock
3
-import sys
4
5
from sentry_sdk.utils import logger
6
@@ -74,11 +73,6 @@ def iter_default_integrations(with_auto_enabling_integrations):
74
73
"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