@@ -191,9 +191,9 @@ def unit(session):
191191def install_systemtest_dependencies (session , * constraints ):
192192
193193 # Use pre-release gRPC for system tests.
194- # Exclude version 1.49 .0rc1 which has a known issue.
195- # See https://github.com/grpc/grpc/pull/30642
196- session .install ("--pre" , "grpcio!=1.49 .0rc1" )
194+ # Exclude version 1.52 .0rc1 which has a known issue.
195+ # See https://github.com/grpc/grpc/issues/32163
196+ session .install ("--pre" , "grpcio!=1.52 .0rc1" )
197197
198198 session .install (* SYSTEM_TEST_STANDARD_DEPENDENCIES , * constraints )
199199
@@ -275,7 +275,7 @@ def cover(session):
275275 session .run ("coverage" , "erase" )
276276
277277
278- @nox .session (python = DEFAULT_PYTHON_VERSION )
278+ @nox .session (python = "3.9" )
279279def docs (session ):
280280 """Build the docs for this library."""
281281
@@ -301,17 +301,16 @@ def docs(session):
301301 )
302302
303303
304- @nox .session (python = DEFAULT_PYTHON_VERSION )
304+ @nox .session (python = "3.9" )
305305def docfx (session ):
306306 """Build the docfx yaml files for this library."""
307307
308308 session .install ("-e" , "." )
309309 session .install (
310- "sphinx==4.0.1 " ,
310+ "gcp- sphinx-docfx-yaml " ,
311311 "alabaster" ,
312312 "google-cloud-aiplatform[prediction]" ,
313313 "recommonmark" ,
314- "gcp-sphinx-docfx-yaml" ,
315314 )
316315
317316 shutil .rmtree (os .path .join ("docs" , "_build" ), ignore_errors = True )
@@ -349,9 +348,7 @@ def prerelease_deps(session):
349348 unit_deps_all = UNIT_TEST_STANDARD_DEPENDENCIES + UNIT_TEST_EXTERNAL_DEPENDENCIES
350349 session .install (* unit_deps_all )
351350 system_deps_all = (
352- SYSTEM_TEST_STANDARD_DEPENDENCIES
353- + SYSTEM_TEST_EXTERNAL_DEPENDENCIES
354- + SYSTEM_TEST_EXTRAS
351+ SYSTEM_TEST_STANDARD_DEPENDENCIES + SYSTEM_TEST_EXTERNAL_DEPENDENCIES
355352 )
356353 session .install (* system_deps_all )
357354
@@ -381,8 +378,8 @@ def prerelease_deps(session):
381378 # dependency of grpc
382379 "six" ,
383380 "googleapis-common-protos" ,
384- # Exclude version 1.49 .0rc1 which has a known issue. See https://github.com/grpc/grpc/pull/30642
385- "grpcio!=1.49 .0rc1" ,
381+ # Exclude version 1.52 .0rc1 which has a known issue. See https://github.com/grpc/grpc/issues/32163
382+ "grpcio!=1.52 .0rc1" ,
386383 "grpcio-status" ,
387384 "google-api-core" ,
388385 "proto-plus" ,
0 commit comments