We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
since merging #1330 the infinite loop is back. nox -s docs-live says this after the first build:
nox -s docs-live
[I 230620 17:00:42 server:335] Serving on http://127.0.0.1:58219 [I 230620 17:00:42 handlers:62] Start watching changes [I 230620 17:00:42 handlers:64] Start detecting changes [I 230620 17:00:43 watcher:110] Running task: build (delay: None) [sphinx-autobuild] Detected change: /opt/pydata-sphinx-theme/docs/api/index.rst
It's detecting a change in the output folder which sphinx_autobuild is supposed to ignore automatically: https://github.com/executablebooks/sphinx-autobuild/blob/ea4d04f4f68f564e65ac21843d4839ce24a6e0ae/src/sphinx_autobuild/cli.py#L38-L40 (!)
sphinx_autobuild
passing --re-ignore=api|locale doesn't work because the value gets re.escaped 🤦🏻. Hacking sphinx-theme-builder locally to not do the escaping it still doesn't work works, upstream PR opened (pradyunsg/sphinx-theme-builder#44). Possibly related to sphinx-doc/sphinx-autobuild#112 and sphinx-doc/sphinx-autobuild#123.
--re-ignore=api|locale
re.escape
sphinx-theme-builder
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Uh oh!
There was an error while loading. Please reload this page.
since merging #1330 the infinite loop is back.
nox -s docs-live
says this after the first build:It's detecting a change in the output folder whichsphinx_autobuild
is supposed to ignore automatically: https://github.com/executablebooks/sphinx-autobuild/blob/ea4d04f4f68f564e65ac21843d4839ce24a6e0ae/src/sphinx_autobuild/cli.py#L38-L40 (!)passing
--re-ignore=api|locale
doesn't work because the value getsre.escape
d 🤦🏻. Hackingsphinx-theme-builder
locally to not do the escapingit still doesn't workworks, upstream PR opened (pradyunsg/sphinx-theme-builder#44).Possibly related to sphinx-doc/sphinx-autobuild#112 and sphinx-doc/sphinx-autobuild#123.The text was updated successfully, but these errors were encountered: