Skip to content

Commit

Permalink
updates pandas version to latest version that passes unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
alixhami committed Nov 22, 2017
1 parent e9a8479 commit d345624
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion bigquery/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
]

EXTRAS_REQUIREMENTS = {
'pandas': ['pandas >= 0.3.0'],
'pandas': ['pandas >= 0.17.1'],
}

setup(
Expand Down
1 change: 1 addition & 0 deletions bigquery/tests/system.py
Original file line number Diff line number Diff line change
Expand Up @@ -1446,6 +1446,7 @@ def test_create_table_rows_fetch_nested_schema(self):
def _fetch_dataframe(self, query):
return Config.CLIENT.query(query).result().to_dataframe()

@unittest.skipIf(pandas is None, 'Requires `pandas`')
def test_nested_table_to_dataframe(self):
SF = bigquery.SchemaField
schema = [
Expand Down

0 comments on commit d345624

Please sign in to comment.