From a191d071cf16b6a2bddfeff75e5391ee9222369f Mon Sep 17 00:00:00 2001 From: Rafael Fontenelle Date: Mon, 2 Mar 2026 19:48:47 -0300 Subject: [PATCH] [3.10] Pin `setuptools==81` to avoid `pkg_resources` removal (#144781) --- Doc/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/Makefile b/Doc/Makefile index 9e72b31ab49..ac8f909a1f9 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