From 895194a60b80c446de4baf9220647892edac3300 Mon Sep 17 00:00:00 2001 From: ioangatop Date: Tue, 19 Mar 2024 18:10:42 +0100 Subject: [PATCH] faster docs build --- noxfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/noxfile.py b/noxfile.py index 2a60bada..a734c3c6 100644 --- a/noxfile.py +++ b/noxfile.py @@ -143,7 +143,7 @@ def bump(session: nox.Session) -> None: def docs(session: nox.Session) -> None: """Builds and deploys the code documentation.""" args = session.posargs or [] - session.run_always("pdm", "install", "--group", "docs", external=True) + session.run_always("pdm", "install", "--no-default", "--group", "docs", external=True) session.run("pdm", "run", "mike", *args)