Skip to content

Commit 8b30a8b

Browse files
authored
BigQuery: Adds Python 3.7 and removes Python 3.4 (#5401)
* BigQuery: Adds Python 3.7 and removes Python 3.4
1 parent 381b627 commit 8b30a8b

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

bigquery/nox.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@ def default(session):
3737
# Install all test dependencies, then install this package in-place.
3838
session.install('mock', 'pytest', 'pytest-cov', *LOCAL_DEPS)
3939

40-
# Pandas does not support Python 3.4
41-
if session.interpreter == 'python3.4':
40+
# Pandas does not support Python 3.7
41+
if session.interpreter == 'python3.7':
4242
session.install('-e', '.')
4343
else:
4444
session.install('-e', '.[pandas, pyarrow]')
@@ -65,7 +65,7 @@ def default(session):
6565

6666

6767
@nox.session
68-
@nox.parametrize('py', ['2.7', '3.5', '3.6'])
68+
@nox.parametrize('py', ['2.7', '3.5', '3.6', '3.7'])
6969
def unit(session, py):
7070
"""Run the unit test suite."""
7171

bigquery/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,9 +76,9 @@
7676
'Programming Language :: Python :: 2',
7777
'Programming Language :: Python :: 2.7',
7878
'Programming Language :: Python :: 3',
79-
'Programming Language :: Python :: 3.4',
8079
'Programming Language :: Python :: 3.5',
8180
'Programming Language :: Python :: 3.6',
81+
'Programming Language :: Python :: 3.7',
8282
'Operating System :: OS Independent',
8383
'Topic :: Internet',
8484
],

0 commit comments

Comments
 (0)