Skip to content

Commit 4431c63

Browse files
committed
fix(build.site) setup.py build_sphinx is deprecated >
from main *sphinx* project, and must opt-in with `[setuptools]` extras, as described in: - sphinx-doc/sphinx#9595 An alternative is to execute the `sphinx-build` cmd, as described in the [docs](https://www.sphinx-doc.org/en/master/usage/quickstart.html): sphinx-build -b html docs/source/ docs/build/ or cd docs && make html
1 parent df8fbb0 commit 4431c63

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ def _ask_git_version(default: str) -> str:
4747
]
4848
matplot_deps = plot_deps + ["matplotlib"]
4949
sphinx_deps = plot_deps + [
50-
"sphinx >=2",
50+
"sphinx[setuptools] >=2",
5151
]
5252
test_deps = list(
5353
set(

0 commit comments

Comments
 (0)