From 940ab3d1833fa2d2ba4544698bb2726ddf1386cf Mon Sep 17 00:00:00 2001 From: Ayush Shah Date: Wed, 19 Jul 2023 12:57:38 +0530 Subject: [PATCH] Fix Dependency issue - mssql (#12499) --- ingestion/setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ingestion/setup.py b/ingestion/setup.py index ef0de4e3aae..0ce66c4a623 100644 --- a/ingestion/setup.py +++ b/ingestion/setup.py @@ -214,7 +214,7 @@ plugins: Dict[str, Set[str]] = { }, "powerbi": {VERSIONS["msal"]}, "presto": {*COMMONS["hive"]}, - # "pymssql": {"pymssql==2.2.5"}, pymssql build is failing ref issue: https://github.com/pymssql/pymssql/issues/826 + "pymssql": {"pymssql==2.2.5"}, "quicksight": {VERSIONS["boto3"]}, "redash": {VERSIONS["packaging"]}, "redpanda": {*COMMONS["kafka"]}, @@ -307,6 +307,7 @@ setup( "airflow", "db2", "great-expectations", + "pymssql", # pymssql build is failing ref issue: https://github.com/pymssql/pymssql/issues/826 } ] )