diff --git a/docs/examples/pydata.ipynb b/docs/examples/pydata.ipynb index 742a0b7c3..7f2d7d189 100644 --- a/docs/examples/pydata.ipynb +++ b/docs/examples/pydata.ipynb @@ -24,7 +24,7 @@ "import numpy as np\n", "import pandas as pd\n", "\n", - "rng = np.random.default_rng()\n", + "rng = np.random.default_rng(seed=15485863)\n", "data = rng.standard_normal((100, 26))\n", "df = pd.DataFrame(data, columns=list(string.ascii_lowercase))\n", "df" diff --git a/noxfile.py b/noxfile.py index f2a4c80c9..88f4a900e 100644 --- a/noxfile.py +++ b/noxfile.py @@ -91,7 +91,9 @@ def docs_live(session: nox.Session) -> None: session.install( "sphinx-theme-builder[cli]@git+https://github.com/pradyunsg/sphinx-theme-builder#egg=d9f620b" ) - session.run("stb", "serve", "docs", "--open-browser", "--re-ignore=locale|api") + session.run( + "stb", "serve", "docs", "--open-browser", "--re-ignore=locale|api|_build" + ) @nox.session() diff --git a/pyproject.toml b/pyproject.toml index 360296011..e26df6287 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,5 +1,5 @@ [build-system] -requires = ["sphinx-theme-builder @ https://github.com/pradyunsg/sphinx-theme-builder/archive/d9f620b1a73839728c95b596343595d3952ec8bf.zip"] +requires = ["sphinx-theme-builder @ https://github.com/pradyunsg/sphinx-theme-builder/archive/87214d0671c943992c05e3db01dca997e156e8d6.zip"] build-backend = "sphinx_theme_builder" [tool.sphinx-theme-builder]