File tree Expand file tree Collapse file tree 2 files changed +0
-9
lines changed Expand file tree Collapse file tree 2 files changed +0
-9
lines changed Original file line number Diff line number Diff line change 2020except 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
3024class AsyncPGIntegration (Integration ):
3125 identifier = "asyncpg"
Original file line number Diff line number Diff line change @@ -34,9 +34,6 @@ def __getitem__(self, _):
3434except 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
4138class ClickhouseDriverIntegration (Integration ):
4239 identifier = "clickhouse_driver"
You can’t perform that action at this time.
0 commit comments