Skip to content

Commit

Permalink
kill the docs-live infinite loop (yet again) (#1540)
Browse files Browse the repository at this point in the history
  • Loading branch information
drammock committed Oct 26, 2023
1 parent 9fc0854 commit e86e0ab
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/examples/pydata.ipynb
Expand Up @@ -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"
Expand Down
4 changes: 3 additions & 1 deletion noxfile.py
Expand Up @@ -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()
Expand Down
2 changes: 1 addition & 1 deletion 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]
Expand Down

0 comments on commit e86e0ab

Please sign in to comment.