8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6762f95 commit 0802ca8Copy full SHA for 0802ca8
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
@@ -1448,6 +1448,7 @@ def test_create_table_rows_fetch_nested_schema(self):
1448
def _fetch_dataframe(self, query):
1449
return Config.CLIENT.query(query).result().to_dataframe()
1450
1451
+ @unittest.skipIf(pandas is None, 'Requires `pandas`')
1452
def test_nested_table_to_dataframe(self):
1453
SF = bigquery.SchemaField
1454
schema = [
0 commit comments