Skip to content

Commit 183daf1

Browse files
tswastparthea
authored andcommitted
Upgrade to 0.29.0 of google-cloud-bigquery (#112)
1 parent 336fd78 commit 183daf1

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

pandas_gbq/gbq.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,8 @@ def _check_google_client_version():
2121
except ImportError:
2222
raise ImportError('Could not import pkg_resources (setuptools).')
2323

24-
# Version 0.28.0 includes many changes compared to previous versions
2524
# 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'
2726

2827
_BIGQUERY_CLIENT_VERSION = pkg_resources.get_distribution(
2928
'google-cloud-bigquery').version
@@ -1241,7 +1240,7 @@ def tables(self, dataset_id):
12411240
table_list = []
12421241

12431242
try:
1244-
table_response = self.client.list_dataset_tables(
1243+
table_response = self.client.list_tables(
12451244
self.client.dataset(dataset_id))
12461245

12471246
for row in table_response:

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ def readme():
2121
'pandas',
2222
'google-auth>=1.0.0',
2323
'google-auth-oauthlib>=0.0.1',
24-
'google-cloud-bigquery>=0.28.0',
24+
'google-cloud-bigquery>=0.29.0',
2525
]
2626

2727

0 commit comments

Comments
 (0)