From d846507b31d11296db412aad54c6f14efbaeec2b Mon Sep 17 00:00:00 2001 From: Cliff Hill Date: Thu, 7 Oct 2021 14:15:23 -0400 Subject: [PATCH] All nox is working. Signed-off-by: Cliff Hill --- noxfile.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/noxfile.py b/noxfile.py index 7d572f9..2c5f802 100644 --- a/noxfile.py +++ b/noxfile.py @@ -165,7 +165,7 @@ def xdoctest(session: Session) -> None: session.run("python", "-m", "xdoctest", package, *args) -@session(name="docs-build", python="3.8") +@session(name="docs-build", python="3.9") def docs_build(session: Session) -> None: """Build the documentation.""" args = session.posargs or ["docs", "docs/_build"] @@ -179,7 +179,7 @@ def docs_build(session: Session) -> None: session.run("sphinx-build", *args) -@session(python="3.8") +@session(python="3.9") def docs(session: Session) -> None: """Build and serve the documentation with live reloading on file changes.""" args = session.posargs or ["--open-browser", "docs", "docs/_build"]