summaryrefslogtreecommitdiffstats
path: root/Doc/Makefile
diff options
context:
space:
mode:
authorNed Deily <nad@python.org>2020-09-01 09:40:27 (GMT)
committerGitHub <noreply@github.com>2020-09-01 09:40:27 (GMT)
commita4c4e17f959621ab00a98086af1704fb0c896466 (patch)
tree70999288d8ae0e7e65ead6477ebae4a7814c883d /Doc/Makefile
parent3584d4b64a5373440f78237eac734831cfd83f79 (diff)
downloadcpython-a4c4e17f959621ab00a98086af1704fb0c896466.zip
cpython-a4c4e17f959621ab00a98086af1704fb0c896466.tar.gz
cpython-a4c4e17f959621ab00a98086af1704fb0c896466.tar.bz2
bpo-41685: Temporarily pin setuptools to 49.2.1 in Docs venv. (GH-22038)
See https://github.com/pypa/setuptools/pull/2361
Diffstat (limited to 'Doc/Makefile')
-rw-r--r--Doc/Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Doc/Makefile b/Doc/Makefile
index b8ca1ed..87d5d07 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"