Skip to content

Commit fd1f5d4

Browse files
chore: pin sphinx to version 4.0.1 (#701)
* chore: pin sphinx to version 4.0.1 Fixes #700 * 🦉 Updates from OwlBot Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
1 parent 5aa264e commit fd1f5d4

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

packages/google-cloud-bigquery/noxfile.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -271,7 +271,7 @@ def blacken(session):
271271
def docs(session):
272272
"""Build the docs."""
273273

274-
session.install("ipython", "recommonmark", "sphinx", "sphinx_rtd_theme")
274+
session.install("ipython", "recommonmark", "sphinx==4.0.1", "sphinx_rtd_theme")
275275
session.install("google-cloud-storage")
276276
session.install("-e", ".[all]")
277277

@@ -295,7 +295,9 @@ def docfx(session):
295295
"""Build the docfx yaml files for this library."""
296296

297297
session.install("-e", ".")
298-
session.install("sphinx", "alabaster", "recommonmark", "gcp-sphinx-docfx-yaml")
298+
session.install(
299+
"sphinx==4.0.1", "alabaster", "recommonmark", "gcp-sphinx-docfx-yaml"
300+
)
299301

300302
shutil.rmtree(os.path.join("docs", "_build"), ignore_errors=True)
301303
session.run(

0 commit comments

Comments
 (0)