From b4da615f09c846e3cbf976ca4aba3f259c87d816 Mon Sep 17 00:00:00 2001 From: Carol Willing Date: Thu, 2 Nov 2023 13:40:31 -0700 Subject: [PATCH 1/2] Update sphinx-autobuild version --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 7ee85ca01..d6e0d750f 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,5 @@ sphinx==4.5.0 -sphinx-autobuild==0.7.1 +sphinx-autobuild==2021.3.14 sphinx-inline-tabs==2021.4.11b9 python-docs-theme==2023.9 sphinx-copybutton==0.5.0 From b4c0c7a627e3c19e712b8d93dba2c97808f55181 Mon Sep 17 00:00:00 2001 From: Carol Willing Date: Thu, 2 Nov 2023 13:52:59 -0700 Subject: [PATCH 2/2] Update CLI arg for sphinx-autobuild host --- noxfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/noxfile.py b/noxfile.py index 884b6ad08..b5d994701 100644 --- a/noxfile.py +++ b/noxfile.py @@ -39,7 +39,7 @@ def build(session, autobuild=False): if autobuild: command = "sphinx-autobuild" - extra_args = "-H", "0.0.0.0" + extra_args = "--host", "0.0.0.0" else: # NOTE: This branch adds options that are unsupported by autobuild command = "sphinx-build"