Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
parthea authored Jan 25, 2024
1 parent aa19b16 commit ec5ca38
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,19 @@ def unitupb(session):
def docs(session):
"""Build the docs."""

session.install("sphinx==4.2.0", "sphinx_rtd_theme")
session.install(
# We need to pin to specific versions of the `sphinxcontrib-*` packages
# which still support sphinx 4.x.
# See https://github.com/googleapis/sphinx-docfx-yaml/issues/344
# and https://github.com/googleapis/sphinx-docfx-yaml/issues/345.
"sphinxcontrib-applehelp==1.0.4",
"sphinxcontrib-devhelp==1.0.2",
"sphinxcontrib-htmlhelp==2.0.1",
"sphinxcontrib-qthelp==1.0.3",
"sphinxcontrib-serializinghtml==1.1.5",
"sphinx==4.5.0",
"sphinx_rtd_theme",
)
session.install(".")

# Build the docs!
Expand Down

0 comments on commit ec5ca38

Please sign in to comment.