From: Rafael Fontenelle Date: Mon, 2 Mar 2026 22:48:47 +0000 (-0300) Subject: [3.10] Pin `setuptools==81` to avoid `pkg_resources` removal (#144781) X-Git-Tag: v3.10.20~6 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a191d071cf16b6a2bddfeff75e5391ee9222369f;p=thirdparty%2FPython%2Fcpython.git [3.10] Pin `setuptools==81` to avoid `pkg_resources` removal (#144781) --- diff --git a/Doc/Makefile b/Doc/Makefile index 9e72b31ab492..ac8f909a1f91 100644 --- a/Doc/Makefile +++ b/Doc/Makefile @@ -150,7 +150,7 @@ venv: echo "To recreate it, remove it first with \`make clean-venv'."; \ else \ $(PYTHON) -m venv $(VENVDIR); \ - $(VENVDIR)/bin/python3 -m pip install -U pip setuptools; \ + $(VENVDIR)/bin/python3 -m pip install -U pip setuptools==81; \ $(VENVDIR)/bin/python3 -m pip install -r requirements.txt; \ echo "The venv has been created in the $(VENVDIR) directory"; \ fi