We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e9a8479 commit d345624Copy full SHA for d345624
bigquery/setup.py
@@ -59,7 +59,7 @@
59
]
60
61
EXTRAS_REQUIREMENTS = {
62
- 'pandas': ['pandas >= 0.3.0'],
+ 'pandas': ['pandas >= 0.17.1'],
63
}
64
65
setup(
bigquery/tests/system.py
@@ -1446,6 +1446,7 @@ def test_create_table_rows_fetch_nested_schema(self):
1446
def _fetch_dataframe(self, query):
1447
return Config.CLIENT.query(query).result().to_dataframe()
1448
1449
+ @unittest.skipIf(pandas is None, 'Requires `pandas`')
1450
def test_nested_table_to_dataframe(self):
1451
SF = bigquery.SchemaField
1452
schema = [
0 commit comments