We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a2c36c1 commit 403f38dCopy full SHA for 403f38d
pandas/io/gbq.py
@@ -43,7 +43,7 @@
43
_GOOGLE_API_CLIENT_INSTALLED=True
44
_GOOGLE_API_CLIENT_VERSION = pkg_resources.get_distribution('google-api-python-client').version
45
46
- if LooseVersion(_GOOGLE_API_CLIENT_VERSION >= '1.2.0'):
+ if LooseVersion(_GOOGLE_API_CLIENT_VERSION) >= '1.2.0':
47
_GOOGLE_API_CLIENT_VALID_VERSION = True
48
49
except ImportError:
@@ -56,7 +56,7 @@
56
57
_GOOGLE_FLAGS_VERSION = pkg_resources.get_distribution('python-gflags').version
58
59
- if LooseVersion(_GOOGLE_FLAGS_VERSION >= '2.0.0'):
+ if LooseVersion(_GOOGLE_FLAGS_VERSION) >= '2.0':
60
_GOOGLE_FLAGS_VALID_VERSION = True
61
62
0 commit comments