Skip to content

Commit 0802ca8

Browse files
committed
updates pandas version to latest version that passes unit tests
1 parent 6762f95 commit 0802ca8

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
@@ -1448,6 +1448,7 @@ def test_create_table_rows_fetch_nested_schema(self):
14481448
def _fetch_dataframe(self, query):
14491449
return Config.CLIENT.query(query).result().to_dataframe()
14501450

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

0 commit comments

Comments
 (0)