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

Commit 5d89725

Browse files
committed
exclude cpp for python 3.11+
1 parent 75be9c9 commit 5d89725

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

noxfile.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -330,6 +330,9 @@ def system(session, protobuf_implementation, database_dialect):
330330
"Only run system tests on real Spanner with one protobuf implementation to speed up the build"
331331
)
332332

333+
if protobuf_implementation == "cpp" and session.python in ("3.11", "3.12", "3.13"):
334+
session.skip("cpp implementation is not supported in python 3.11+")
335+
333336
# Install pyopenssl for mTLS testing.
334337
if os.environ.get("GOOGLE_API_USE_CLIENT_CERTIFICATE", "false") == "true":
335338
session.install("pyopenssl")

0 commit comments

Comments
 (0)