[3.10] Pin setuptools==81 to avoid pkg_resources removal (#144781)

This commit is contained in:
Rafael Fontenelle 2026-03-02 19:48:47 -03:00 committed by GitHub
parent dad6f8dff8
commit a191d071cf
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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