8000 feat(bigquery): add client_options to base class (#216) · googleapis/python-bigquery@478597a · GitHub
[go: up one dir, main page]

Skip to 8000 content

Commit 478597a

Browse files
feat(bigquery): add client_options to base class (#216)
* feat(bigquery): add client_options to base class * chore: bump g-c-c to 1.4.1
1 parent bae2337 commit 478597a

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

google/cloud/bigquery/client.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,10 @@ def __init__(
177177
client_options=None,
178178
):
179179
super(Client, self).__init__(
180-
project=project, credentials=credentials, _http=_http
180+
project=project,
181+
credentials=credentials,
182+
client_options=client_options,
183+
_http=_http,
181184
)
182185

183186
kw_args = {"client_info": client_info}

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
dependencies = [
3232
'enum34; python_version < "3.4"',
3333
"google-api-core >= 1.21.0, < 2.0dev",
34-
"google-cloud-core >= 1.1.0, < 2.0dev",
34+
"google-cloud-core >= 1.4.1, < 2.0dev",
3535
"google-resumable-media >= 0.5.0, < 2.0dev",
3636
"six >=1.13.0,< 2.0.0dev",
3737
]

0 commit comments

Comments
 (0)
0