From d97497bf1cc6abd4a9a67d8da4f00cf13b3af4b3 Mon Sep 17 00:00:00 2001
From: Steve Dower <steve.dower@python.org>
Date: Tue, 29 Mar 2022 20:10:57 +0100
Subject: [PATCH] bpo-47138: Ensure Windows docs build uses the same pinned
 version as other platforms (GH-32182)

---
 Doc/make.bat | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Doc/make.bat b/Doc/make.bat
index 63e0bd72364..f081b4d35a2 100644
--- a/Doc/make.bat
+++ b/Doc/make.bat
@@ -13,7 +13,7 @@ if not defined SPHINXBUILD (
     %PYTHON% -c "import sphinx" > nul 2> nul
     if errorlevel 1 (
         echo Installing sphinx with %PYTHON%
-        %PYTHON% -m pip install sphinx==2.2.0
+        %PYTHON% -m pip install sphinx==2.3.1 blurb docutils==0.17.1 Jinja2==3.0.3
         if errorlevel 1 exit /B
     )
     set SPHINXBUILD=%PYTHON% -c "import sphinx.cmd.build, sys; sys.exit(sphinx.cmd.build.main())"
-- 
GitLab