From 99a43e02e13f85b931a1e90bf4b53bd71ef657dc Mon Sep 17 00:00:00 2001 From: Carol Willing Date: Fri, 17 Nov 2023 10:38:35 -0800 Subject: [PATCH] correct sphinx build command --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 02484687..16e0565d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -226,8 +226,8 @@ extra-dependencies = [ "Sphinx>=7.2.6", ] [tool.hatch.envs.docs.scripts] -build = "sphinx-build -d docs docs_out --color -W -bhtml" -build-ci = "sphinx-build -d docs docs_out --color -W -bhtml" +build = "sphinx-build docs docs_out --color -W -bhtml" +build-ci = "sphinx-build docs docs_out --color -W -bhtml" [tool.pytest.ini_options] minversion = "6.0"