-
Notifications
You must be signed in to change notification settings - Fork 3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix(bigquery): missing dependency #4567
fix(bigquery): missing dependency #4567
Conversation
metadata-ingestion/setup.py
Outdated
@@ -150,7 +150,7 @@ def get_long_description(): | |||
# 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 | usage_common | {"sqlalchemy-bigquery>=1.4.1"}, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think it is a bit misleading we name it as usage_common and we use it with non-usage sources
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Any suggestions?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
maybe add the sqlparser directly?
my concern is that from now on all the additional usage_common dependencies will automatically be a dependency of the bigquery source as well.
Which will be fine if we merge usage with source.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
changed
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
thanks
* fix(bigquery): missing dependency * code review feedback
#3782 introduced a regression due to missing dependencies
#4561 fixed usage sources but missed
bigquery
Checklist