fix(bigquery): missing dependency (#4567)

* fix(bigquery): missing dependency

* code review feedback
This commit is contained in:
Aseem Bansal 2022-04-04 21:04:34 +05:30 committed by GitHub
parent 58e4364354
commit 1478489c9c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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", },