Skip to content

Commit f4954eb

Browse files
committed
chore: revised noxfile to accommodate sphinx conflicts
1 parent e691ffa commit f4954eb

1 file changed

Lines changed: 7 additions & 6 deletions

File tree

packages/bigframes/noxfile.py

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

516516

517-
@nox.session(python="3.13")
517+
@nox.session(python="3.10")
518518
def docs(session):
519519
"""Build the docs for this library."""
520520
session.install("-e", ".[scikit-learn]")
521521
session.install(
522-
"sphinx==9.1.0",
523-
"sphinx-sitemap==2.9.0",
524-
"myst-parser==5.0.0",
525-
"myst-nb==1.4.0",
526-
"pydata-sphinx-theme==0.16.1",
522+
"sphinx",
523+
"sphinx-sitemap",
524+
"myst-parser",
525+
"myst-nb",
526+
"pydata-sphinx-theme",
527527
)
528528

529529
shutil.rmtree(os.path.join("docs", "_build"), ignore_errors=True)
530+
session.run("python", "-m", "pip", "freeze")
530531

531532
session.run(
532533
"python",

0 commit comments

Comments
 (0)