The html syntax specifier on line in README.rst is causing a warning in the Sphinx build which leads to a build failure due to the fact that we are treating all warnings as errors. The contents of the code block is in Django template syntax, hence the failure to parse as proper HTML. Replacing html with django causes the build to complete successfully.
The
html
syntax specifier on line in README.rst is causing a warning in the Sphinx build which leads to a build failure due to the fact that we are treating all warnings as errors. The contents of the code block is in Django template syntax, hence the failure to parse as proper HTML. Replacinghtml
withdjango
causes the build to complete successfully.