Fix Dependency issue - mssql (#12499)

This commit is contained in:
Ayush Shah 2023-07-19 12:57:38 +05:30 committed by GitHub
parent ceef44205b
commit 940ab3d183
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -214,7 +214,7 @@ plugins: Dict[str, Set[str]] = {
}, },
"powerbi": {VERSIONS["msal"]}, "powerbi": {VERSIONS["msal"]},
"presto": {*COMMONS["hive"]}, "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"]}, "quicksight": {VERSIONS["boto3"]},
"redash": {VERSIONS["packaging"]}, "redash": {VERSIONS["packaging"]},
"redpanda": {*COMMONS["kafka"]}, "redpanda": {*COMMONS["kafka"]},
@ -307,6 +307,7 @@ setup(
"airflow", "airflow",
"db2", "db2",
"great-expectations", "great-expectations",
"pymssql", # pymssql build is failing ref issue: https://github.com/pymssql/pymssql/issues/826
} }
] ]
) )