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

Commit 8c8a56b

Browse files
committed
cater for cpp
1 parent ccf0a88 commit 8c8a56b

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

noxfile.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -339,6 +339,12 @@ def system(session, protobuf_implementation, database_dialect):
339339

340340
install_systemtest_dependencies(session, "-c", constraints_path)
341341

342+
# TODO(https://github.com/googleapis/synthtool/issues/1976):
343+
# Remove the 'cpp' implementation once support for Protobuf 3.x is dropped.
344+
# The 'cpp' implementation requires Protobuf<4.
345+
if protobuf_implementation == "cpp":
346+
session.install("protobuf<4")
347+
342348
# Run py.test against the system tests.
343349
if system_test_exists:
344350
session.run(

0 commit comments

Comments
 (0)