Skip to content

Commit

Permalink
Test pandas support under Python 3.7. (#5857)
Browse files Browse the repository at this point in the history
* Test pandas support under Python 3.7.

Full support still blocked on pyarrow support for Python 3.7.

See #5294.
  • Loading branch information
tseaver authored Aug 29, 2018
1 parent 288e482 commit de69735
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions bigquery/nox.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,12 @@ def default(session):
# Install all test dependencies, then install this package in-place.
session.install('mock', 'pytest', 'pytest-cov', *LOCAL_DEPS)

# Pandas does not support Python 3.7
# Pyarrow does not support Python 3.7
if session.interpreter == 'python3.7':
session.install('-e', '.')
dev_install = '.[pandas]'
else:
session.install('-e', '.[pandas, pyarrow]')
dev_install = '.[pandas, pyarrow]'
session.install('-e', dev_install)

# IPython does not support Python 2 after version 5.x
if session.interpreter == 'python2.7':
Expand Down

0 comments on commit de69735

Please sign in to comment.