We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5595968 commit f4e029aCopy full SHA for f4e029a
bigquery/nox.py
@@ -36,7 +36,10 @@ def default(session):
36
"""
37
# Install all test dependencies, then install this package in-place.
38
session.install('mock', 'pytest', 'pytest-cov', *LOCAL_DEPS)
39
- session.install('-e', '.[pandas]')
+ if session.interpreter == 'python3.4':
40
+ session.install('-e', '.')
41
+ else:
42
+ session.install('-e', '.[pandas]')
43
44
# Run py.test against the unit tests.
45
session.run(
0 commit comments