From f3929156a60f868c057d769726a71c9e07259e19 Mon Sep 17 00:00:00 2001 From: Taylor Salo Date: Fri, 4 Oct 2024 12:30:17 -0400 Subject: [PATCH] Add usage page to docs (#18) * Add usage page to table of contents. * Unpin sphinx bc I think version probs are solved. --- docs/index.rst | 1 + pyproject.toml | 8 ++++++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/docs/index.rst b/docs/index.rst index 660804c..5e04eeb 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -13,3 +13,4 @@ api denoisers auto_examples/index + usage diff --git a/pyproject.toml b/pyproject.toml index 416fbbf..efec10b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -29,8 +29,12 @@ classifiers = [ [project.optional-dependencies] optional = ["modopt", "nipype", "numba"] test = ["pytest", "pytest-cov", "pytest-xdist", "pytest-sugar"] -# sphinx 6 failes with pydata, sphinx 5 with sphinx gallery... -doc = ["pydata-sphinx-theme", "numpydoc", "sphinx_gallery", "sphinx<5"] +doc = [ + "pydata-sphinx-theme", + "numpydoc", + "sphinx_gallery", + "sphinx", +] dev = ["black", "isort", "ruff"] [project.scripts]