diff --git a/bigquery/nox.py b/bigquery/nox.py index f0ddeadd8ac7..9f9eccd4db0a 100644 --- a/bigquery/nox.py +++ b/bigquery/nox.py @@ -37,8 +37,8 @@ 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.4 - if session.interpreter == 'python3.4': + # Pandas does not support Python 3.7 + if session.interpreter == 'python3.7': session.install('-e', '.') else: session.install('-e', '.[pandas, pyarrow]') @@ -65,7 +65,7 @@ def default(session): @nox.session -@nox.parametrize('py', ['2.7', '3.5', '3.6']) +@nox.parametrize('py', ['2.7', '3.5', '3.6', '3.7']) def unit(session, py): """Run the unit test suite.""" diff --git a/bigquery/setup.py b/bigquery/setup.py index 75348ce203e3..c473dbcc2333 100644 --- a/bigquery/setup.py +++ b/bigquery/setup.py @@ -76,9 +76,9 @@ 'Programming Language :: Python :: 2', 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3', - 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', + 'Programming Language :: Python :: 3.7', 'Operating System :: OS Independent', 'Topic :: Internet', ],