Skip to content

Commit

Permalink
chore: Fix dependencies of docs-serve Nox session
Browse files Browse the repository at this point in the history
  • Loading branch information
edgarrmondragon committed Dec 27, 2024
1 parent afac884 commit dc18533
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,12 @@ def docs_serve(session: nox.Session) -> None:
"docs",
"build",
]
session.install("citric @ .", "-r", "requirements/requirements-docs.txt")
session.install(
"citric @ .",
"sphinx-autobuild",
"-r",
"requirements/requirements-docs.txt",
)

build_dir = Path("build")
if build_dir.exists():
Expand Down

0 comments on commit dc18533

Please sign in to comment.