[Python-checkins] bpo-41685: Temporarily pin setuptools to 49.2.1 in Docs venv. (GH-22038)

Ned Deily webhook-mailer at python.org
Tue Sep 1 05:40:45 EDT 2020


https://github.com/python/cpython/commit/a4c4e17f959621ab00a98086af1704fb0c896466
commit: a4c4e17f959621ab00a98086af1704fb0c896466
branch: master
author: Ned Deily <nad at python.org>
committer: GitHub <noreply at github.com>
date: 2020-09-01T05:40:27-04:00
summary:

bpo-41685: Temporarily pin setuptools to 49.2.1 in Docs venv. (GH-22038)

See https://github.com/pypa/setuptools/pull/2361

files:
M Doc/Makefile

diff --git a/Doc/Makefile b/Doc/Makefile
index b8ca1edfbc60a..87d5d07665c86 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"
 



More information about the Python-checkins mailing list