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 @@ -65,7 +65,6 @@ dev = [
65
65
" dbt-clickhouse" ,
66
66
" dbt-databricks" ,
67
67
" dbt-redshift" ,
68
- " dbt-sqlserver>=1.7.0;python_version<'3.13'" ,
69
68
" dbt-trino" ,
70
69
" Faker" ,
71
70
" google-auth" ,
Original file line number Diff line number Diff line change 1
1
import base64
2
2
import typing as t
3
- import sys
4
3
from pathlib import Path
5
4
from shutil import copytree
6
5
@@ -950,13 +949,6 @@ def test_db_type_to_column_class():
950
949
assert (TARGET_TYPE_TO_CONFIG_CLASS ["duckdb" ].column_class ) == Column
951
950
assert (TARGET_TYPE_TO_CONFIG_CLASS ["snowflake" ].column_class ) == SnowflakeColumn
952
951
953
- if sys .version_info < (3 , 13 ):
954
- # The dbt-sqlserver package is not currently compatible with Python 3.13
955
-
956
- from dbt .adapters .sqlserver .sqlserver_column import SQLServerColumn
957
-
958
- assert (TARGET_TYPE_TO_CONFIG_CLASS ["sqlserver" ].column_class ) == SQLServerColumn
959
-
960
952
from dbt .adapters .clickhouse .column import ClickHouseColumn
961
953
from dbt .adapters .trino .column import TrinoColumn
962
954
from dbt .adapters .athena .column import AthenaColumn
You can’t perform that action at this time.
0 commit comments