Skip to content

Commit 6ee748e

Browse files
committed
BLD: updated print_versions for bigquery & google apiclient
1 parent 2c60400 commit 6ee748e

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

pandas/util/print_versions.py

+12
Original file line numberDiff line numberDiff line change
@@ -144,6 +144,18 @@ def show_versions():
144144
except:
145145
print("html5lib: Not installed")
146146

147+
try:
148+
import bq
149+
print("bigquery: %s" % bq._VersionNumber())
150+
except:
151+
print("bigquery: Not installed")
152+
153+
try:
154+
import apiclient
155+
print("apiclient: %s" % apiclient.__version__)
156+
except:
157+
print("apiclient: Not installed")
158+
147159

148160

149161
if __name__ == "__main__":

0 commit comments

Comments
 (0)