Skip to content

Commit f5ec3ff

Browse files
committed
fix: separate pyodbc dependency for azuresql and mssql
1 parent 762fab3 commit f5ec3ff

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

pyproject.toml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,8 @@ classifiers = [
3737

3838
[project.optional-dependencies]
3939
athena = ["PyAthena[Pandas]"]
40-
azuresql = ["pymssql", "pyodbc"]
40+
azuresql = ["pymssql"]
41+
azuresql-odbc = ["pyodbc"]
4142
bigquery = [
4243
"google-cloud-bigquery[pandas]",
4344
"google-cloud-bigquery-storage"
@@ -98,7 +99,8 @@ dlt = ["dlt"]
9899
gcppostgres = ["cloud-sql-python-connector[pg8000]>=1.8.0"]
99100
github = ["PyGithub~=2.5.0"]
100101
llm = ["langchain", "openai"]
101-
mssql = ["pymssql", "pyodbc"]
102+
mssql = ["pymssql"]
103+
mssql-odbc = ["pyodbc"]
102104
mysql = ["pymysql"]
103105
mwaa = ["boto3"]
104106
postgres = ["psycopg2"]

0 commit comments

Comments
 (0)