We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2c60400 commit 6ee748eCopy full SHA for 6ee748e
pandas/util/print_versions.py
@@ -144,6 +144,18 @@ def show_versions():
144
except:
145
print("html5lib: Not installed")
146
147
+ try:
148
+ import bq
149
+ print("bigquery: %s" % bq._VersionNumber())
150
+ except:
151
+ print("bigquery: Not installed")
152
+
153
154
+ import apiclient
155
+ print("apiclient: %s" % apiclient.__version__)
156
157
+ print("apiclient: Not installed")
158
159
160
161
if __name__ == "__main__":
0 commit comments