Doc: Update pip and setuptools when creating the virtual environment (GH-13307)



Add a new pip install before `sphinx` etc.. because we should use the last version of `pip` and `setuptools`
diff --git a/Doc/Makefile b/Doc/Makefile
index cf1bb88..6f86728 100644
--- a/Doc/Makefile
+++ b/Doc/Makefile
@@ -132,6 +132,7 @@
 
 venv:
 	$(PYTHON) -m venv $(VENVDIR)
+	$(VENVDIR)/bin/python3 -m pip install -U pip setuptools
 	$(VENVDIR)/bin/python3 -m pip install -U Sphinx blurb python-docs-theme
 	@echo "The venv has been created in the $(VENVDIR) directory"