From 8bbbfb6c7257005bef841143690308f05d4b829b Mon Sep 17 00:00:00 2001 From: Deepyaman Datta Date: Wed, 31 Jul 2024 04:58:29 -0600 Subject: [PATCH] Don't pick up failing `sphinx-notfound-page` 1.0.3 (#4047) Signed-off-by: Deepyaman Datta --- pyproject.toml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 0aef9e1cc2..2dabb4c422 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -81,12 +81,13 @@ test = [ "types-PyYAML", "types-cachetools", "types-requests", - "types-toml" + "types-toml", ] docs = [ - "kedro-sphinx-theme==2024.4.0", "ipykernel>=5.3, <7.0", "Jinja2<3.2.0", + "kedro-sphinx-theme==2024.4.0", + "sphinx-notfound-page!=1.0.3", # Required by kedro-sphinx-theme. 1.0.3 results in `AttributeError: 'tuple' object has no attribute 'default'`. ] jupyter = [ "ipylab>=1.0.0", @@ -208,7 +209,7 @@ forbidden_modules = [ ] ignore_imports = [ "kedro.framework.context.context -> kedro.config", - "kedro.framework.session.session -> kedro.config" + "kedro.framework.session.session -> kedro.config", ] [tool.ruff]