From 1478489c9c8ddd7891f3b22216efce606976b29a Mon Sep 17 00:00:00 2001 From: Aseem Bansal Date: Mon, 4 Apr 2022 21:04:34 +0530 Subject: [PATCH] fix(bigquery): missing dependency (#4567) * fix(bigquery): missing dependency * code review feedback --- metadata-ingestion/setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/metadata-ingestion/setup.py b/metadata-ingestion/setup.py index 9915fa3de0..a9ae33e960 100644 --- a/metadata-ingestion/setup.py +++ b/metadata-ingestion/setup.py @@ -150,7 +150,7 @@ plugins: Dict[str, Set[str]] = { # PyAthena is pinned with exact version because we use private method in PyAthena "athena": sql_common | {"PyAthena[SQLAlchemy]==2.4.1"}, "azure-ad": set(), - "bigquery": sql_common | bigquery_common | {"sqlalchemy-bigquery>=1.4.1"}, + "bigquery": sql_common | bigquery_common | {"sqlalchemy-bigquery>=1.4.1", "sqlparse"}, "bigquery-usage": bigquery_common | usage_common | {"cachetools"}, "clickhouse": sql_common | {"clickhouse-sqlalchemy==0.1.8"}, "clickhouse-usage": sql_common | usage_common | {"clickhouse-sqlalchemy==0.1.8", },