Skip to content

Commit 5b266ea

Browse files
committed
fix build
1 parent 59bc9fb commit 5b266ea

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

packages/google-cloud-runtimeconfig/noxfile.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -369,15 +369,15 @@ def docfx(session):
369369
)
370370

371371

372-
@nox.session(python="3.14")
372+
@nox.session(python=DEFAULT_PYTHON_VERSION)
373373
@nox.parametrize(
374374
"protobuf_implementation",
375375
["python", "upb", "cpp"],
376376
)
377377
def prerelease_deps(session, protobuf_implementation):
378378
"""Run all tests with prerelease versions of dependencies installed."""
379379

380-
if protobuf_implementation == "cpp" and session.python in ("3.11", "3.12", "3.13"):
380+
if protobuf_implementation == "cpp" and session.python in ("3.11", "3.12", "3.13", "3.14"):
381381
session.skip("cpp implementation is not supported in python 3.11+")
382382

383383
# Install all dependencies

0 commit comments

Comments
 (0)