Skip to content

Commit d345624

Browse files
committed
updates pandas version to latest version that passes unit tests
1 parent e9a8479 commit d345624

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

bigquery/setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@
5959
]
6060

6161
EXTRAS_REQUIREMENTS = {
62-
'pandas': ['pandas >= 0.3.0'],
62+
'pandas': ['pandas >= 0.17.1'],
6363
}
6464

6565
setup(

bigquery/tests/system.py

+1
Original file line numberDiff line numberDiff line change
@@ -1446,6 +1446,7 @@ def test_create_table_rows_fetch_nested_schema(self):
14461446
def _fetch_dataframe(self, query):
14471447
return Config.CLIENT.query(query).result().to_dataframe()
14481448

1449+
@unittest.skipIf(pandas is None, 'Requires `pandas`')
14491450
def test_nested_table_to_dataframe(self):
14501451
SF = bigquery.SchemaField
14511452
schema = [

0 commit comments

Comments
 (0)