File tree 2 files changed +3
-4
lines changed
2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -21,9 +21,8 @@ def _check_google_client_version():
21
21
except ImportError :
22
22
raise ImportError ('Could not import pkg_resources (setuptools).' )
23
23
24
- # Version 0.28.0 includes many changes compared to previous versions
25
24
# https://github.com/GoogleCloudPlatform/google-cloud-python/blob/master/bigquery/CHANGELOG.md
26
- bigquery_client_minimum_version = '0.28 .0'
25
+ bigquery_client_minimum_version = '0.29 .0'
27
26
28
27
_BIGQUERY_CLIENT_VERSION = pkg_resources .get_distribution (
29
28
'google-cloud-bigquery' ).version
@@ -1241,7 +1240,7 @@ def tables(self, dataset_id):
1241
1240
table_list = []
1242
1241
1243
1242
try :
1244
- table_response = self .client .list_dataset_tables (
1243
+ table_response = self .client .list_tables (
1245
1244
self .client .dataset (dataset_id ))
1246
1245
1247
1246
for row in table_response :
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ def readme():
21
21
'pandas' ,
22
22
'google-auth>=1.0.0' ,
23
23
'google-auth-oauthlib>=0.0.1' ,
24
- 'google-cloud-bigquery>=0.28 .0' ,
24
+ 'google-cloud-bigquery>=0.29 .0' ,
25
25
]
26
26
27
27
You can’t perform that action at this time.
0 commit comments