diff --git a/RELEASE.md b/RELEASE.md index 1fa28a68d5..3d2420e1bb 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -15,6 +15,7 @@ Please follow the established format: - Refactor backend integration with Kedro by replacing bootstrap_project with configure_project. (#1796) - Enhance kedro-viz doc integration. (#1874) - Fix Kedro-Viz waiting for valid Kedro project. (#1871) +- Enhance Kedro-Viz documentation by using Kedro-sphinx-theme. (#1898) # Release 9.0.0 diff --git a/docs/source/_templates/layout.html b/docs/source/_templates/layout.html deleted file mode 100644 index 5e2cd48b45..0000000000 --- a/docs/source/_templates/layout.html +++ /dev/null @@ -1,76 +0,0 @@ -{% extends "!layout.html" %} {%- block extrabody %} - -
- - -
- Kedro - Kedro-Viz - Kedro-Datasets -
- - {%- include "searchbox.html" %} -
- -{% endblock %} {%- block extrahead %} - - - -{% endblock %} diff --git a/docs/source/conf.py b/docs/source/conf.py index be246d7c16..1d3edbd09d 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -62,7 +62,7 @@ # The theme to use for HTML and HTML Help pages. See the documentation for # a list of builtin themes. # -html_theme = "sphinx_rtd_theme" +html_theme = "kedro-sphinx-theme" # Theme options are theme-specific and customise the look and feel of a theme # further. For a list of options available for each theme, see the diff --git a/package/setup.py b/package/setup.py index d2257d6f6d..e04cda700f 100644 --- a/package/setup.py +++ b/package/setup.py @@ -52,11 +52,7 @@ }, extras_require={ "docs": [ - "sphinx>=5.3,<7.3", - "sphinx_copybutton==0.5.2", - "sphinx-notfound-page", - "sphinx_rtd_theme==1.3.0", - "myst-parser>=1.0,<2.1", + "kedro-sphinx-theme==2024.4.0", ], "aws": ["s3fs>=2021.4"], "azure": ["adlfs>=2021.4"],