Skip to content
This repository was archived by the owner on Mar 6, 2026. It is now read-only.

Commit 79d6782

Browse files
committed
Update noxfile for Python 3.14
1 parent ae13336 commit 79d6782

File tree

1 file changed

+3
-7
lines changed

1 file changed

+3
-7
lines changed

noxfile.py

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
ISORT_VERSION = "isort==5.11.0"
3333
LINT_PATHS = ["docs", "google", "tests", "noxfile.py", "setup.py"]
3434

35-
DEFAULT_PYTHON_VERSION = "3.13"
35+
DEFAULT_PYTHON_VERSION = "3.14"
3636

3737
UNIT_TEST_PYTHON_VERSIONS: List[str] = [
3838
"3.9",
@@ -71,10 +71,6 @@
7171

7272
nox.options.sessions = [
7373
"unit-3.9",
74-
"unit-3.10",
75-
"unit-3.11",
76-
"unit-3.12",
77-
"unit-3.13",
7874
"unit-3.14",
7975
"system",
8076
"cover",
@@ -303,7 +299,7 @@ def cover(session):
303299
session.run("coverage", "erase")
304300

305301

306-
@nox.session(python="3.10")
302+
@nox.session(python="3.14")
307303
def docs(session):
308304
"""Build the docs for this library."""
309305

@@ -338,7 +334,7 @@ def docs(session):
338334
)
339335

340336

341-
@nox.session(python="3.10")
337+
@nox.session(python="3.14")
342338
def docfx(session):
343339
"""Build the docfx yaml files for this library."""
344340

0 commit comments

Comments
 (0)