Was this page helpful?
Caution
You're viewing documentation for a previous version of ScyllaDB Sphinx Theme. Switch to the latest stable version.
This guide explains how to upgrade the version of the ScyllaDB Sphinx Theme.
The theme version is displayed in the footer of the project’s documentation site.
If your project theme’s version is >=1.3, follow this guide to get the latest version.
Here are the main breaking changes between the 1.3 and 1.4 versions.
Update the following Python dependencies in docs/pyproject.toml
:
sphinx-scylladb-theme = "~1.4.1"
Edit the docs/Makefile
file and add the rm -f poetry.lock
to the clean
command:
# Clean commands .PHONY: clean clean: rm -rf $(BUILDDIR)/* rm -f poetry.lock
Build the docs locally:
cd docs make preview
Fix any warnings that appear in the terminal.
Was this page helpful?