We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e691ffa commit f4954ebCopy full SHA for f4954eb
1 file changed
packages/bigframes/noxfile.py
@@ -514,19 +514,20 @@ def cover(session):
514
session.run("coverage", "erase")
515
516
517
-@nox.session(python="3.13")
+@nox.session(python="3.10")
518
def docs(session):
519
"""Build the docs for this library."""
520
session.install("-e", ".[scikit-learn]")
521
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",
+ "sphinx",
+ "sphinx-sitemap",
+ "myst-parser",
+ "myst-nb",
+ "pydata-sphinx-theme",
527
)
528
529
shutil.rmtree(os.path.join("docs", "_build"), ignore_errors=True)
530
+ session.run("python", "-m", "pip", "freeze")
531
532
session.run(
533
"python",
0 commit comments