We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0a52546 commit a8aaaf6Copy full SHA for a8aaaf6
noxfile.py
@@ -166,7 +166,7 @@ def docs(session):
166
"""Build the docs for this library."""
167
168
session.install("-e", ".")
169
- session.install("sphinx", "alabaster", "recommonmark")
+ session.install("sphinx==4.0.1", "alabaster", "recommonmark")
170
171
shutil.rmtree(os.path.join("docs", "_build"), ignore_errors=True)
172
session.run(
@@ -189,7 +189,9 @@ def docfx(session):
189
190
191
session.install("grpcio")
192
- session.install("sphinx", "alabaster", "recommonmark", "gcp-sphinx-docfx-yaml")
+ session.install(
193
+ "sphinx==4.0.1", "alabaster", "recommonmark", "gcp-sphinx-docfx-yaml"
194
+ )
195
196
197
0 commit comments