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