-
Notifications
You must be signed in to change notification settings - Fork 1
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
feat: depend on pydata-google-auth to fetch credentials #49
Conversation
If the credentials are not set, the user will be guided through the OAuth flow.
If the credentials are not set, the user will be guided through the OAuth flow.
@@ -36,6 +36,7 @@ | |||
"packaging >= 20.0.0", | |||
"pandas>=1.1.0", | |||
"pyarrow >= 3.0.0", | |||
"pydata-google-auth >=1.5.0", |
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.
Please also update the minimum supported Python's corresponding constraints file to make sure this minimum version continues to be accurate.
Per
python-bigquery-magics/setup.py
Line 114 in 943d0a4
python_requires=">=3.7", |
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.
Done!
FYI: This is what I'd consider a new feature, as it means we support a few more kinds of authentication beyond the ones in the google-auth package. I've updated your PR title accordingly. |
Fixes #47 🦕