From 056c30c7fb38622a63a4eab26be6939b20cf2d7d Mon Sep 17 00:00:00 2001 From: Dan Lee <71398022+dandhlee@users.noreply.github.com> Date: Fri, 3 Nov 2023 13:40:31 -0400 Subject: [PATCH 1/2] chore: update docfx minimum Python version --- noxfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/noxfile.py b/noxfile.py index c4fb8201f6..f563e269a5 100644 --- a/noxfile.py +++ b/noxfile.py @@ -201,7 +201,7 @@ def docs(session): ) -@nox.session(python="3.9") +@nox.session(python="3.10") def docfx(session): """Build the docfx yaml files for this library.""" From 76b54699baadd0285d18307aafad544edb29cd39 Mon Sep 17 00:00:00 2001 From: Dan Lee <71398022+dandhlee@users.noreply.github.com> Date: Fri, 3 Nov 2023 13:46:51 -0400 Subject: [PATCH 2/2] chore: unpin sphinx version to use sphinx plugin version --- noxfile.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/noxfile.py b/noxfile.py index f563e269a5..8edc92d484 100644 --- a/noxfile.py +++ b/noxfile.py @@ -207,10 +207,9 @@ def docfx(session): session.install("-e", ".[tracing]") session.install( - "sphinx==4.0.1", + "gcp-sphinx-docfx-yaml", "alabaster", "recommonmark", - "gcp-sphinx-docfx-yaml", "django==2.2", )