From 464fddbe81fe8c79df27d8012aaf649b96e2180e Mon Sep 17 00:00:00 2001 From: "Wei-Hsiang (Matt) Wang" Date: Wed, 19 Oct 2022 12:56:54 +0800 Subject: [PATCH 1/2] fix(Makefile): specify sphinx version [why] The CI jobs failed after sphinx 6.0 was released. Limit the version <6 as temporary solution. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 3f9c041ab0..51a39500ed 100644 --- a/Makefile +++ b/Makefile @@ -67,7 +67,7 @@ $(VENV)/bin/activate: $(VENV)/bin/sphinx-build: $(VENV)/bin/activate - . $(VENV)/bin/activate; python3 -m pip install sphinx python-docs-theme + . $(VENV)/bin/activate; python3 -m pip install "sphinx<6" python-docs-theme $(VENV)/bin/blurb: $(VENV)/bin/activate From 88862901681c1f82f8b066d169f5023dea606792 Mon Sep 17 00:00:00 2001 From: "Wei-Hsiang (Matt) Wang" Date: Wed, 19 Oct 2022 13:06:07 +0800 Subject: [PATCH 2/2] Update Makefile --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 51a39500ed..48246f5883 100644 --- a/Makefile +++ b/Makefile @@ -67,7 +67,7 @@ $(VENV)/bin/activate: $(VENV)/bin/sphinx-build: $(VENV)/bin/activate - . $(VENV)/bin/activate; python3 -m pip install "sphinx<6" python-docs-theme + . $(VENV)/bin/activate; python3 -m pip install "sphinx<5.3" python-docs-theme $(VENV)/bin/blurb: $(VENV)/bin/activate