Skip to content

Commit

Permalink
BigQuery: Adds Python 3.7 and removes Python 3.4 (#5401)
Browse files Browse the repository at this point in the history
* BigQuery: Adds Python 3.7 and removes Python 3.4
  • Loading branch information
alixhami authored May 29, 2018
1 parent 381b627 commit 8b30a8b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions bigquery/nox.py
Original file line number Diff line number Diff line change
Expand Up @@ -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]')
Expand All @@ -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."""

Expand Down
2 changes: 1 addition & 1 deletion bigquery/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
],
Expand Down

0 comments on commit 8b30a8b

Please sign in to comment.