[Python-checkins] bpo-41685: Don't pin setuptools version anymore in Doc/Makefile (GH-22062)

Victor Stinner webhook-mailer at python.org
Wed Sep 2 07:11:26 EDT 2020


https://github.com/python/cpython/commit/51fece1bb8d7aa22f114172a256714fe24788e31
commit: 51fece1bb8d7aa22f114172a256714fe24788e31
branch: master
author: Victor Stinner <vstinner at python.org>
committer: GitHub <noreply at github.com>
date: 2020-09-02T13:11:21+02:00
summary:

bpo-41685: Don't pin setuptools version anymore in Doc/Makefile (GH-22062)

setuptools 50.0.2 is now compatible with Python 3.10:
https://github.com/pypa/setuptools/pull/2361

files:
M Doc/Makefile

diff --git a/Doc/Makefile b/Doc/Makefile
index f1d0a267dd89d..c11a7ca5c1bcb 100644
--- a/Doc/Makefile
+++ b/Doc/Makefile
@@ -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"
 



More information about the Python-checkins mailing list