Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 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
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ RUN apt-get update \
/var/tmp/*

COPY . /app
RUN pip install --upgrade pip
RUN pip install --no-cache-dir "/app[all]"
RUN pip install uv
RUN uv pip install --no-cache --system "/app[all]"
Comment thread
coderabbitai[bot] marked this conversation as resolved.
Outdated

ENTRYPOINT ["edr"]
34 changes: 17 additions & 17 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ packages = [{include = "elementary"}]
[tool.poetry.dependencies]
python = ">=3.10,<3.14"
click = ">=7.0,<9.0"
dbt-core = ">=0.20,<2.0.0"
dbt-core = ">=1.8,<2.0.0"
Comment thread
coderabbitai[bot] marked this conversation as resolved.
requests = ">=2.28.1,<3.0.0"
beautifulsoup4 = "<5.0.0"
ratelimit = "*"
Expand All @@ -45,21 +45,21 @@ tabulate = ">= 0.9.0"
tenacity = ">=8.0,<10.0"
pytz = ">= 2025.1"

dbt-snowflake = {version = ">=0.20,<2.0.0", optional = true}
dbt-bigquery = {version = ">=0.20,<2.0.0", optional = true}
dbt-redshift = {version = ">=0.20,<2.0.0", optional = true}
dbt-postgres = {version = ">=0.20,<2.0.0", optional = true}
dbt-databricks = {version = ">=0.20,<2.0.0", optional = true}
dbt-spark = {version = ">=0.20,<2.0.0", optional = true}
dbt-athena-community = {version = ">=1.6.3,<2.0.0", optional = true}
dbt-trino = {version = ">=1.5.0,<2.0.0", optional = true}
dbt-clickhouse = {version = ">=0.20,<2.0.0", optional = true}
dbt-duckdb = {version = ">=1.5.0,<2.0.0", optional = true}
dbt-dremio = {version = ">=1.5.0,<2.0.0", optional = true}
dbt-fabric = {version = ">=1.4,<2.0.0", optional = true}
dbt-fabricspark = {version = ">=1.4,<2.0.0", optional = true}
dbt-sqlserver = {version = ">=1.4,<2.0.0", optional = true}
dbt-vertica = {version = ">=1.7,<2.0.0", optional = true}
dbt-snowflake = {version = ">=1.8,<2.0.0", optional = true}
dbt-bigquery = {version = ">=1.8,<2.0.0", optional = true}
dbt-redshift = {version = ">=1.8,<2.0.0", optional = true}
dbt-postgres = {version = ">=1.8,<2.0.0", optional = true}
dbt-databricks = {version = ">=1.8,<2.0.0", optional = true}
dbt-spark = {version = ">=1.8,<2.0.0", optional = true}
dbt-athena-community = {version = ">=1.8,<2.0.0", optional = true}
dbt-trino = {version = ">=1.8,<2.0.0", optional = true}
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 @@ -76,7 +76,7 @@ fabric = ["dbt-fabric"]
fabricspark = ["dbt-fabricspark"]
sqlserver = ["dbt-sqlserver"]
vertica = ["dbt-vertica"]
all = ["dbt-snowflake", "dbt-bigquery", "dbt-redshift", "dbt-postgres", "dbt-databricks", "dbt-spark", "dbt-clickhouse", "dbt-athena-community", "dbt-trino", "dbt-duckdb", "dbt-dremio", "dbt-fabric", "dbt-fabricspark", "dbt-sqlserver", "dbt-vertica"]
all = ["dbt-snowflake", "dbt-bigquery", "dbt-redshift", "dbt-postgres", "dbt-databricks", "dbt-spark", "dbt-clickhouse", "dbt-athena-community", "dbt-trino", "dbt-duckdb", "dbt-dremio", "dbt-fabric", "dbt-sqlserver", "dbt-vertica"]

[build-system]
requires = ["poetry-core>=1.0.0"]
Expand Down
Loading