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 7b967e7 commit 18098f0Copy full SHA for 18098f0
noxfile.py
@@ -103,7 +103,11 @@ def lint(session):
103
session.run("flake8", "db_dtypes", "tests")
104
105
106
-@nox.session(python="3.8")
+# TODO: the owlbot-python docker image still has python 3.8 installed (
107
+# and only 3.8).
108
+# As soon as that gets upgraded, we should be able to revert this session
109
+# to using the DEFAULT_PYTHON_VERSION.
110
+@nox.session(python="3.10")
111
def blacken(session):
112
"""Run black. Format code to uniform standard."""
113
session.install(BLACK_VERSION)
0 commit comments