File tree Expand file tree Collapse file tree 1 file changed +12
-2
lines changed
Expand file tree Collapse file tree 1 file changed +12
-2
lines changed Original file line number Diff line number Diff line change @@ -168,7 +168,12 @@ def install_unittest_dependencies(session, *constraints):
168168def unit (session , protobuf_implementation ):
169169 # Install all test dependencies, then install this package in-place.
170170
171- if protobuf_implementation == "cpp" and session .python in ("3.11" , "3.12" , "3.13" , "3.14" ):
171+ if protobuf_implementation == "cpp" and session .python in (
172+ "3.11" ,
173+ "3.12" ,
174+ "3.13" ,
175+ "3.14" ,
176+ ):
172177 session .skip ("cpp implementation is not supported in python 3.11+" )
173178
174179 constraints_path = str (
@@ -376,7 +381,12 @@ def docfx(session):
376381def prerelease_deps (session , protobuf_implementation ):
377382 """Run all tests with prerelease versions of dependencies installed."""
378383
379- if protobuf_implementation == "cpp" and session .python in ("3.11" , "3.12" , "3.13" , "3.14" ):
384+ if protobuf_implementation == "cpp" and session .python in (
385+ "3.11" ,
386+ "3.12" ,
387+ "3.13" ,
388+ "3.14" ,
389+ ):
380390 session .skip ("cpp implementation is not supported in python 3.11+" )
381391
382392 # Install all dependencies
You can’t perform that action at this time.
0 commit comments