Skip to content

Commit 8e74097

Browse files
committed
lint
1 parent 3cd76c7 commit 8e74097

1 file changed

Lines changed: 13 additions & 2 deletions

File tree

packages/gcp-sphinx-docfx-yaml/noxfile.py

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,16 @@
1717
import nox
1818

1919
DEFAULT_PYTHON_VERSION = "3.14"
20-
UNIT_TEST_PYTHON_VERSIONS = ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "3.14", "3.15"]
20+
UNIT_TEST_PYTHON_VERSIONS = [
21+
"3.8",
22+
"3.9",
23+
"3.10",
24+
"3.11",
25+
"3.12",
26+
"3.13",
27+
"3.14",
28+
"3.15",
29+
]
2130
RUFF_VERSION = "ruff==0.14.14"
2231

2332
ALL_PYTHON = list(UNIT_TEST_PYTHON_VERSIONS)
@@ -138,7 +147,9 @@ def unit(session):
138147
# Re-enable 3.8, 3.9, 3.11, 3.12, and 3.13 after environment verification.
139148
# TODO(https://github.com/googleapis/google-cloud-python/issues/16176):
140149
# Track 3.14 compatibility as upstream dependencies stabilize.
141-
_skip_python_session(session, ["3.7", "3.8", "3.9", "3.11", "3.12", "3.13", "3.14", "3.15"])
150+
_skip_python_session(
151+
session, ["3.7", "3.8", "3.9", "3.11", "3.12", "3.13", "3.14", "3.15"]
152+
)
142153
session.install("-r", "requirements.txt")
143154
session.install("pytest", "pytest-cov")
144155
session.run(

0 commit comments

Comments
 (0)