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

Commit f22b45a

Browse files
committed
skip cpp tests in 3.14
1 parent 83d3f75 commit f22b45a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

noxfile.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ def install_unittest_dependencies(session, *constraints):
175175
def unit(session, protobuf_implementation):
176176
# Install all test dependencies, then install this package in-place.
177177

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

181181
constraints_path = str(
@@ -383,7 +383,7 @@ def docfx(session):
383383
def prerelease_deps(session, protobuf_implementation):
384384
"""Run all tests with prerelease versions of dependencies installed."""
385385

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

389389
# Install all dependencies

0 commit comments

Comments
 (0)