]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
bpo-41685: Temporarily pin setuptools to 49.2.1 in Docs venv. (GH-22038)
authorNed Deily <nad@python.org>
Tue, 1 Sep 2020 09:40:27 +0000 (05:40 -0400)
committerGitHub <noreply@github.com>
Tue, 1 Sep 2020 09:40:27 +0000 (05:40 -0400)
See https://github.com/pypa/setuptools/pull/2361

Doc/Makefile

index b8ca1edfbc60a58cabc4f29b770329fe1b45bbc4..87d5d07665c86364c474745dacce42377f27a046 100644 (file)
@@ -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"