From 96673606604a4f4eef53cbfa462cb9dd7d8dcea1 Mon Sep 17 00:00:00 2001 From: Alix Hamilton Date: Tue, 29 May 2018 11:21:20 -0700 Subject: [PATCH 1/2] BigQuery: Adds Python 3.7 and removes Python 3.4 --- bigquery/nox.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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.""" From 931d965db3e9b44dbca793a68e56dae35b0ca101 Mon Sep 17 00:00:00 2001 From: Alix Hamilton Date: Tue, 29 May 2018 12:13:17 -0700 Subject: [PATCH 2/2] updates setup.py for version support change --- bigquery/setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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', ],