From 7242c428e7ca9eaa7bc78fdc85c6c5b95ac72ff0 Mon Sep 17 00:00:00 2001 From: Anthonios Partheniou Date: Thu, 22 Jan 2026 18:54:33 +0000 Subject: [PATCH 1/2] chore: bump python version used for blacken session --- noxfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/noxfile.py b/noxfile.py index 3331fd35..51d0c48b 100644 --- a/noxfile.py +++ b/noxfile.py @@ -120,7 +120,7 @@ def lint(session): session.run("flake8", "google", "tests") -@nox.session(python="3.13") +@nox.session(python=DEFAULT_PYTHON_VERSION) def blacken(session): """Run black. Format code to uniform standard.""" session.install(BLACK_VERSION) From c569d34a9743aaabe6e58a4f174b3bd1d2e38324 Mon Sep 17 00:00:00 2001 From: Anthonios Partheniou Date: Thu, 22 Jan 2026 18:55:37 +0000 Subject: [PATCH 2/2] also bump in .librarian/generator-input/noxfile.py --- .librarian/generator-input/noxfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.librarian/generator-input/noxfile.py b/.librarian/generator-input/noxfile.py index 16dca84d..7d1fed58 100644 --- a/.librarian/generator-input/noxfile.py +++ b/.librarian/generator-input/noxfile.py @@ -116,7 +116,7 @@ def lint(session): session.run("flake8", "google", "tests") -@nox.session(python="3.13") +@nox.session(python="3.14") def blacken(session): """Run black. Format code to uniform standard.""" session.install(BLACK_VERSION)