Skip to content

Commit

Permalink
Fix up some Python executable refs in noxfile.
Browse files Browse the repository at this point in the history
  • Loading branch information
ubernostrum committed Jan 15, 2024
1 parent a3cf691 commit 20ff273
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,13 +120,13 @@ def docs_build(session: nox.Session) -> None:
session.install(".[docs]")
session.chdir("docs")
session.run(
f"{session.bin}/python{session.python}",
f"python{session.python}",
"-Im",
"sphinx",
"-b",
"html",
"-d",
f"{session.bin}/../tmp/doctrees",
f"{session.bin}/../tmp/doctrees", # FIX ME
".",
f"{session.bin}/../tmp/html",
)
Expand Down Expand Up @@ -171,7 +171,7 @@ def docs_spellcheck(session: nox.Session) -> None:
build_dir = session.create_tmp()
session.chdir("docs")
session.run(
f"{session.bin}/python{session.python}",
f"python{session.python}",
"-Im",
"sphinx",
"-W", # Promote warnings to errors, so that misspelled words fail the build.
Expand Down

0 comments on commit 20ff273

Please sign in to comment.