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 = [
6565 " dbt-clickhouse" ,
6666 " dbt-databricks" ,
6767 " dbt-redshift" ,
68- " dbt-sqlserver>=1.7.0;python_version<'3.13'" ,
6968 " dbt-trino" ,
7069 " Faker" ,
7170 " google-auth" ,
Original file line number Diff line number Diff line change 11import base64
22import typing as t
3- import sys
43from pathlib import Path
54from shutil import copytree
65
@@ -950,13 +949,6 @@ def test_db_type_to_column_class():
950949 assert (TARGET_TYPE_TO_CONFIG_CLASS ["duckdb" ].column_class ) == Column
951950 assert (TARGET_TYPE_TO_CONFIG_CLASS ["snowflake" ].column_class ) == SnowflakeColumn
952951
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-
960952 from dbt .adapters .clickhouse .column import ClickHouseColumn
961953 from dbt .adapters .trino .column import TrinoColumn
962954 from dbt .adapters .athena .column import AthenaColumn
You can’t perform that action at this time.
0 commit comments