Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -459,7 +459,7 @@ def cover(session):
session.run("coverage", "erase")


@nox.session(python="3.9")
@nox.session(python="3.9", venv_backend="virtualenv")
def docs(session):
"""Build the docs for this library."""

Expand All @@ -483,7 +483,7 @@ def docs(session):
)


@nox.session(python="3.10")
@nox.session(python="3.10", venv_backend="virtualenv")
def docfx(session):
"""Build the docfx yaml files for this library."""

Expand Down Expand Up @@ -519,7 +519,7 @@ def docfx(session):
)


@nox.session(python="3.9")
@nox.session(python="3.9", venv_backend="virtualenv")
def gemini_docs(session):
"""Build the docs for library related to Gemini."""

Expand All @@ -540,7 +540,7 @@ def gemini_docs(session):
)


@nox.session(python="3.10")
@nox.session(python="3.10", venv_backend="virtualenv")
def gemini_docfx(session):
"""Build the docfx yaml files for library related to Gemini."""

Expand Down