Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 4 additions & 7 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,7 @@ dbt-clickhouse = {version = ">=1.8,<2.0.0", optional = true}
dbt-duckdb = {version = ">=1.8,<2.0.0", optional = true}
dbt-dremio = {version = ">=1.8,<2.0.0", optional = true}
dbt-fabric = {version = ">=1.8,<2.0.0", optional = true}
dbt-fabricspark = {version = ">=1.8,<2.0.0", optional = true}
dbt-sqlserver = {version = ">=1.8,<2.0.0", optional = true}
dbt-vertica = {version = ">=1.8,<2.0.0", optional = true}
[tool.poetry.extras]
snowflake = ["dbt-snowflake"]
bigquery = ["dbt-bigquery"]
Expand All @@ -73,12 +71,11 @@ trino = ["dbt-trino"]
duckdb = ["dbt-duckdb"]
dremio = ["dbt-dremio"]
fabric = ["dbt-fabric"]
fabricspark = ["dbt-fabricspark"]
sqlserver = ["dbt-sqlserver"]
vertica = ["dbt-vertica"]
# dbt-fabricspark is excluded due to broken upstream dependencies (azure-cli pre-release pins).
# dbt-vertica is excluded because it pins dbt-core==1.8.5, forcing the entire resolution to dbt 1.8.
# Both are still available as individual extras (e.g. pip install elementary-data[vertica]).
# dbt-fabricspark and dbt-vertica are removed from the lockfile resolution because they pin
# outdated transitive dependencies (dbt-core==1.8.5, azure-cli pre-release) that block
# security patches for deepdiff, protobuf, and pyopenssl. Users who need these adapters
# can still install them directly (e.g. pip install dbt-fabricspark dbt-vertica).
all = ["dbt-snowflake", "dbt-bigquery", "dbt-redshift", "dbt-postgres", "dbt-databricks", "dbt-spark", "dbt-athena-community", "dbt-trino", "dbt-clickhouse", "dbt-duckdb", "dbt-dremio", "dbt-fabric", "dbt-sqlserver"]

[build-system]
Expand Down
Loading