Skip to content

Commit 4f63ca1

Browse files
committed
chore: revised noxfile to accommodate sphinx conflicts
1 parent 065c057 commit 4f63ca1

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

packages/bigframes/noxfile.py

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -516,19 +516,20 @@ def cover(session):
516516
session.run("coverage", "erase")
517517

518518

519-
@nox.session(python="3.13")
519+
@nox.session(python="3.10")
520520
def docs(session):
521521
"""Build the docs for this library."""
522522
session.install("-e", ".[scikit-learn]")
523523
session.install(
524-
"sphinx==9.1.0",
525-
"sphinx-sitemap==2.9.0",
526-
"myst-parser==5.0.0",
527-
"myst-nb==1.4.0",
528-
"pydata-sphinx-theme==0.16.1",
524+
"sphinx",
525+
"sphinx-sitemap",
526+
"myst-parser",
527+
"myst-nb",
528+
"pydata-sphinx-theme",
529529
)
530530

531531
shutil.rmtree(os.path.join("docs", "_build"), ignore_errors=True)
532+
session.run("python", "-m", "pip", "freeze")
532533

533534
session.run(
534535
"python",

0 commit comments

Comments
 (0)