Skip to content

Commit f885bd5

Browse files
committed
Make optional
1 parent 482a08d commit f885bd5

File tree

3 files changed

+53
-3
lines changed

3 files changed

+53
-3
lines changed

deploy_ai_search/pyproject.toml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,3 +26,14 @@ dev = [
2626

2727
[tool.uv.sources]
2828
text_2_sql_core = { workspace = true }
29+
30+
[project.optional-dependencies]
31+
snowflake = [
32+
"text_2_sql_core[snowflake]",
33+
]
34+
databricks = [
35+
"text_2_sql_core[databricks]",
36+
]
37+
postgresql = [
38+
"text_2_sql_core[postgresql]",
39+
]

text_2_sql/autogen/pyproject.toml

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ dependencies = [
1111
"autogen-ext[azure,openai]==0.4.0.dev11",
1212
"grpcio>=1.68.1",
1313
"pyyaml>=6.0.2",
14-
"text_2_sql_core[snowflake,databricks,postgresql]",
14+
"text_2_sql_core",
1515
]
1616

1717
[dependency-groups]
@@ -28,3 +28,14 @@ dev = [
2828

2929
[tool.uv.sources]
3030
text_2_sql_core = { workspace = true }
31+
32+
[project.optional-dependencies]
33+
snowflake = [
34+
"text_2_sql_core[snowflake]",
35+
]
36+
databricks = [
37+
"text_2_sql_core[databricks]",
38+
]
39+
postgresql = [
40+
"text_2_sql_core[postgresql]",
41+
]

uv.lock

Lines changed: 30 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)