From 139432ce9297edf13fd17d5f93dd9bb7772ff877 Mon Sep 17 00:00:00 2001 From: Anna Stuchlik Date: Wed, 2 Aug 2023 17:11:01 +0200 Subject: [PATCH] doc: replace python3 with python in Makefile In some setups, documentation won't build if python3 is used in the "python3 _utils/prepare_sphinx_source.py _source" command. This commit replaces python3 with python to make it work. --- docs/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/Makefile b/docs/Makefile index 329f7e7f5..e5a9318eb 100644 --- a/docs/Makefile +++ b/docs/Makefile @@ -31,7 +31,7 @@ setup: $(POETRY) install $(POETRY) update cp -TLr source $(SOURCEDIR) - python3 _utils/prepare_sphinx_source.py _source + python _utils/prepare_sphinx_source.py _source # Clean commands .PHONY: pristine