From d594b08e77684f2b78c2c58f7c18bdf21c3bc5ab Mon Sep 17 00:00:00 2001 From: Ned Deily Date: Tue, 1 Sep 2020 05:09:04 -0400 Subject: [PATCH] Temporarily pin setuptools to 49.2.1 in Docs venv. See https://github.com/pypa/setuptools/pull/2361 --- Doc/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Doc/Makefile b/Doc/Makefile index b8ca1edfbc60a5..87d5d07665c863 100644 --- a/Doc/Makefile +++ b/Doc/Makefile @@ -142,7 +142,8 @@ clean: venv: $(PYTHON) -m venv $(VENVDIR) - $(VENVDIR)/bin/python3 -m pip install -U pip setuptools +# $(VENVDIR)/bin/python3 -m pip install -U pip setuptools + $(VENVDIR)/bin/python3 -m pip install -U pip setuptools==49.2.1 $(VENVDIR)/bin/python3 -m pip install -U Sphinx==2.3.1 blurb python-docs-theme @echo "The venv has been created in the $(VENVDIR) directory"