Skip to content

Commit f4fa720

Browse files
committed
fix
1 parent 7c8f6d4 commit f4fa720

File tree

2 files changed

+0
-9
lines changed

2 files changed

+0
-9
lines changed

sentry_sdk/integrations/asyncpg.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,6 @@
2020
except ImportError:
2121
raise DidNotEnable("asyncpg not installed.")
2222

23-
# asyncpg.__version__ is a string containing the semantic version in the form of "<major>.<minor>.<patch>"
24-
asyncpg_version = parse_version(asyncpg.__version__)
25-
26-
if asyncpg_version is not None and asyncpg_version < (0, 23, 0):
27-
raise DidNotEnable("asyncpg >= 0.23.0 required")
28-
2923

3024
class AsyncPGIntegration(Integration):
3125
identifier = "asyncpg"

sentry_sdk/integrations/clickhouse_driver.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,6 @@ def __getitem__(self, _):
3434
except ImportError:
3535
raise DidNotEnable("clickhouse-driver not installed.")
3636

37-
if clickhouse_driver.VERSION < (0, 2, 0):
38-
raise DidNotEnable("clickhouse-driver >= 0.2.0 required")
39-
4037

4138
class ClickhouseDriverIntegration(Integration):
4239
identifier = "clickhouse_driver"

0 commit comments

Comments
 (0)