Skip to content

Commit d8ca970

Browse files
committed
Chore: Remove dbt-sqlserver dependencies (#4862)
1 parent 09eb408 commit d8ca970

File tree

2 files changed

+0
-9
lines changed

2 files changed

+0
-9
lines changed

pyproject.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff 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",

tests/dbt/test_config.py

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import base64
22
import typing as t
3-
import sys
43
from pathlib import Path
54
from 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

0 commit comments

Comments
 (0)