Skip to content

Commit 18098f0

Browse files
committed
updates blacken to 3.10
1 parent 7b967e7 commit 18098f0

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

noxfile.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,11 @@ def lint(session):
103103
session.run("flake8", "db_dtypes", "tests")
104104

105105

106-
@nox.session(python="3.8")
106+
# 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")
107111
def blacken(session):
108112
"""Run black. Format code to uniform standard."""
109113
session.install(BLACK_VERSION)

0 commit comments

Comments
 (0)