Skip to content

Commit f4e029a

Browse files
alixhamitswast
authored andcommitted
Skips pandas when running python 3.4 nox session (#4681)
1 parent 5595968 commit f4e029a

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

bigquery/nox.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,10 @@ def default(session):
3636
"""
3737
# Install all test dependencies, then install this package in-place.
3838
session.install('mock', 'pytest', 'pytest-cov', *LOCAL_DEPS)
39-
session.install('-e', '.[pandas]')
39+
if session.interpreter == 'python3.4':
40+
session.install('-e', '.')
41+
else:
42+
session.install('-e', '.[pandas]')
4043

4144
# Run py.test against the unit tests.
4245
session.run(

0 commit comments

Comments
 (0)