Skip to content

Commit

Permalink
feat(bigquery): add client_options to base class (#216)
Browse files Browse the repository at this point in the history
* feat(bigquery): add client_options to base class

* chore: bump g-c-c to 1.4.1
  • Loading branch information
HemangChothani committed Aug 14, 2020
1 parent bae2337 commit 478597a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion google/cloud/bigquery/client.py
Expand Up @@ -177,7 +177,10 @@ def __init__(
client_options=None,
):
super(Client, self).__init__(
project=project, credentials=credentials, _http=_http
project=project,
credentials=credentials,
client_options=client_options,
_http=_http,
)

kw_args = {"client_info": client_info}
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -31,7 +31,7 @@
dependencies = [
'enum34; python_version < "3.4"',
"google-api-core >= 1.21.0, < 2.0dev",
"google-cloud-core >= 1.1.0, < 2.0dev",
"google-cloud-core >= 1.4.1, < 2.0dev",
"google-resumable-media >= 0.5.0, < 2.0dev",
"six >=1.13.0,< 2.0.0dev",
]
Expand Down

0 comments on commit 478597a

Please sign in to comment.