diff --git a/docs/conf.py b/docs/conf.py index 1eba0e0856e..b86a3a1fa75 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -22,6 +22,7 @@ extensions = [ "sphinx.ext.autodoc", "sphinx.ext.intersphinx", + "sphinx_autofixture", "sphinx_autodoc_typehints", "sphinx.ext.todo", "sphinx.ext.napoleon", diff --git a/pyproject.toml b/pyproject.toml index 4c8f452c00c..926601f51f2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -64,6 +64,7 @@ sphinx-issues = "^3.0.0" sphinx-inline-tabs = { version = "*", python = "^3.7" } sphinxext-opengraph = "*" sphinx-copybutton = "^0.5.0" +sphinx-autofixture = "~0.2.3" myst_parser = "~0.17.0" ### Testing ### @@ -87,7 +88,7 @@ isort = "*" flake8 = "*" [tool.poetry.extras] -docs = ["sphinx", "sphinx-issues", "sphinx-click", "sphinx-autodoc-typehints", "sphinx-autobuild", "sphinx-copybutton", "sphinxext-opengraph", "sphinx-inline-tabs", "myst_parser", "furo", "aafigure", "pillow"] +docs = ["sphinx", "sphinx-issues", "sphinx-click", "sphinx-autodoc-typehints", "sphinx-autobuild", "sphinx-autofixture", "sphinx-copybutton", "sphinxext-opengraph", "sphinx-inline-tabs", "myst_parser", "furo", "aafigure", "pillow"] test = ["pytest", "pytest-rerunfailures", "pytest-mock", "pytest-watcher", "tox", "tox-poetry-installer"] coverage = ["codecov", "coverage", "pytest-cov"] format = ["black", "isort"]