From 7564bcf88ef9e1228bba959bcdcb0f7f4e9b1614 Mon Sep 17 00:00:00 2001 From: David Garcia Date: Tue, 10 Oct 2023 12:46:28 +0100 Subject: [PATCH 1/2] docs: update theme 1.6 --- docs/Makefile | 6 ------ docs/pyproject.toml | 12 ++++++------ 2 files changed, 6 insertions(+), 12 deletions(-) diff --git a/docs/Makefile b/docs/Makefile index c0a00ce16..a64c657b3 100644 --- a/docs/Makefile +++ b/docs/Makefile @@ -15,12 +15,6 @@ ALLSPHINXOPTS := -d $(BUILDDIR)/doctrees $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) $( TESTSPHINXOPTS := $(ALLSPHINXOPTS) -W --keep-going PROD_OPTS := -D html_theme_options.collapse_navigation='false' -D html_theme_options.navigation_depth=3 -c $(CONF_PATH) - -# Windows variables -ifeq ($(OS),Windows_NT) - POETRY = $(APPDATA)\Python\Scripts\poetry -endif - .PHONY: all all: dirhtml diff --git a/docs/pyproject.toml b/docs/pyproject.toml index 61ad7ac41..b672a80d6 100644 --- a/docs/pyproject.toml +++ b/docs/pyproject.toml @@ -5,14 +5,14 @@ version = "4.3.0" authors = ["ScyllaDB Contributors"] [tool.poetry.dependencies] -python = "^3.7" -pyyaml = "6.0" +python = "^3.9" +pyyaml = "6.0.1" pygments = "2.15.1" -sphinx-scylladb-theme = "~1.5.1" -sphinx-sitemap = "2.5.0" +sphinx-scylladb-theme = "~1.6.1" +sphinx-sitemap = "2.5.1" sphinx-autobuild = "2021.3.14" -Sphinx = "4.3.2" -sphinx-multiversion-scylla = "~0.2.10" +Sphinx = "7.2.6" +sphinx-multiversion-scylla = "~0.3.1" redirects_cli ="~0.1.2" [build-system] From b71e4a24ddea9e32fae4fa67df620f4c4c3d262b Mon Sep 17 00:00:00 2001 From: David Garcia Date: Tue, 10 Oct 2023 12:53:15 +0100 Subject: [PATCH 2/2] Add paralell builds --- docs/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/Makefile b/docs/Makefile index a64c657b3..a020d50dd 100644 --- a/docs/Makefile +++ b/docs/Makefile @@ -1,7 +1,7 @@ # Global variables # You can set these variables from the command line. POETRY := poetry -SPHINXOPTS := +SPHINXOPTS := -j auto SPHINXBUILD := $(POETRY) run sphinx-build PAPER := BUILDDIR := _build