From 7a5850987010ca5cb0f1e2844cfe183935916e7e Mon Sep 17 00:00:00 2001 From: Ned Deily Date: Mon, 21 Feb 2022 12:58:35 -0500 Subject: [PATCH] bpo-45618: Fix documentation build by pinning Docutils version to 0.17.1 (GH-31476) --- Doc/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/Makefile b/Doc/Makefile index 8a5e03079925..1393bcb52500 100644 --- a/Doc/Makefile +++ b/Doc/Makefile @@ -127,7 +127,7 @@ clean: venv: $(PYTHON) -m venv $(VENVDIR) - $(VENVDIR)/bin/python3 -m pip install -U Sphinx==2.3.1 blurb + $(VENVDIR)/bin/python3 -m pip install -U Sphinx==2.3.1 blurb docutils==0.17.1 @echo "The venv has been created in the $(VENVDIR) directory" dist: -- 2.47.3