Skip to content
This repository was archived by the owner on Mar 2, 2026. It is now read-only.

Commit 2575697

Browse files
authored
feat: pass 'client_options' to base class ctor (#60)
packaging: pin 'google-cloud-core >= 1.4.0' Closes #50.
1 parent eea4593 commit 2575697

2 files changed

Lines changed: 5 additions & 2 deletions

File tree

google/cloud/datastore/client.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,10 @@ def __init__(
239239
_use_grpc=None,
240240
):
241241
super(Client, self).__init__(
242-
project=project, credentials=credentials, _http=_http
242+
project=project,
243+
credentials=credentials,
244+
client_options=client_options,
245+
_http=_http,
243246
)
244247
self.namespace = namespace
245248
self._client_info = client_info

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
release_status = "Development Status :: 5 - Production/Stable"
3131
dependencies = [
3232
"google-api-core[grpc] >= 1.14.0, < 2.0.0dev",
33-
"google-cloud-core >= 1.0.3, < 2.0dev",
33+
"google-cloud-core >= 1.4.0, < 2.0dev",
3434
]
3535
extras = {}
3636

0 commit comments

Comments
 (0)