Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@
import sys
import warnings

import google.api_core as api_core

from google.cloud.bigquery import version as bigquery_version

__version__ = bigquery_version.__version__
Expand Down Expand Up @@ -132,6 +134,9 @@
FutureWarning,
)

api_core.check_python_version(__name__)
api_core.check_dependency_versions(__name__)

__all__ = [
"__version__",
"Client",
Expand Down
5 changes: 5 additions & 0 deletions packages/google-cloud-ndb/google/cloud/ndb/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@
.. autodata:: __all__
"""

import google.api_core as api_core

from google.cloud.ndb import version

__version__: str = version.__version__
Expand Down Expand Up @@ -135,6 +137,9 @@
wait_any,
)

api_core.check_python_version(__name__)
api_core.check_dependency_versions(__name__)

__all__ = [
"__version__",
"AutoBatcher",
Expand Down
Loading