]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
bpo-41685: Don't pin setuptools version anymore in Doc/Makefile (GH-22062)
authorVictor Stinner <vstinner@python.org>
Wed, 2 Sep 2020 11:11:21 +0000 (13:11 +0200)
committerGitHub <noreply@github.com>
Wed, 2 Sep 2020 11:11:21 +0000 (13:11 +0200)
setuptools 50.0.2 is now compatible with Python 3.10:
https://github.com/pypa/setuptools/pull/2361

Doc/Makefile

index f1d0a267dd89d5492904c0071fb075a9a1c6f9c1..c11a7ca5c1bcb7023013f1ec9a56cabf0cb5046b 100644 (file)
@@ -142,8 +142,7 @@ clean:
 
 venv:
        $(PYTHON) -m venv $(VENVDIR)
-#      $(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 pip setuptools
        $(VENVDIR)/bin/python3 -m pip install -U Sphinx==3.2.1 blurb python-docs-theme
        @echo "The venv has been created in the $(VENVDIR) directory"