@@ -239,7 +239,12 @@ def unit(session, protobuf_implementation):
239239
240240 # TODO(https: //github.com /googleapis /gapic-generator-python /issues /2388):
241241 # Remove this check once support for Protobuf 3.x is dropped.
242- if protobuf_implementation == " cpp" and session.python in ( " 3.11" , " 3.12" , " 3.13" , " 3.14" ):
242+ if protobuf_implementation == " cpp" and session.python in (
243+ " 3.11" ,
244+ " 3.12" ,
245+ " 3.13" ,
246+ " 3.14" ,
247+ ):
243248 session.skip( " cpp implementation is not supported in python 3.11+" )
244249
245250 constraints_path = str(
@@ -386,8 +391,10 @@ def docs(session):
386391 " -W" , # warnings as errors
387392 " -T" , # show full traceback on exception
388393 " -N" , # no colors
389- " -b" , " html" , # builder
390- " -d" , os.path.join( " docs" , " _build" , " doctrees" , " " ), # cache directory
394+ " -b" , # builder
395+ " html" ,
396+ " -d" , # cache directory
397+ os.path.join( " docs" , " _build" , " doctrees" , " " ),
391398 # paths to build:
392399 os.path.join( " docs" , " " ),
393400 os.path.join( " docs" , " _build" , " html" , " " ),
@@ -455,7 +462,12 @@ def prerelease_deps(session, protobuf_implementation):
455462
456463 # TODO(https: //github.com /googleapis /gapic-generator-python /issues /2388):
457464 # Remove this check once support for Protobuf 3.x is dropped.
458- if protobuf_implementation == " cpp" and session.python in ( " 3.11" , " 3.12" , " 3.13" , " 3.14" ):
465+ if protobuf_implementation == " cpp" and session.python in (
466+ " 3.11" ,
467+ " 3.12" ,
468+ " 3.13" ,
469+ " 3.14" ,
470+ ):
459471 session.skip( " cpp implementation is not supported in python 3.11+" )
460472
461473 # Install all dependencies
0 commit comments