We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 144ceea commit e24d47eCopy full SHA for e24d47e
noxfile.py
@@ -103,6 +103,10 @@ def unit_noextras(session):
103
@nox.session(python=DEFAULT_PYTHON_VERSION)
104
def pytype(session):
105
"""Run type checks."""
106
+ # An indirect dependecy attrs==21.1.0 breaks the check, and installing a less
107
+ # recent version avoids the error until a possibly better fix is found.
108
+ # https://github.com/googleapis/python-bigquery/issues/655
109
+ session.install("attrs==20.3.0")
110
session.install("-e", ".[all]")
111
session.install("ipython")
112
session.install(PYTYPE_VERSION)
0 commit comments