We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Best sphinx publication warning a lot about fixe version of package use for generate the documentation. For that pip-compile is the way.
Unfortunatlly i have to add sphinx-notfound-page because the commande
pip-compile --extra=doc --output-file=docs/requirements.txt pyproject.toml
Do not add sphinx-notfound-page inside docs/requirements.txt .txt
Here my conf.py import;
extensions = [ 'sphinx.ext.autodoc', 'autoapi.extension', 'sphinx.ext.intersphinx', 'sphinx.ext.coverage', 'sphinx.ext.doctest', 'sphinx.ext.extlinks', 'notfound.extension', 'sphinxemoji.sphinxemoji', ]
The workarround is to declare pyproject.toml
pyproject.toml
[project.optional-dependencies] doc = [ "sphinx-rtd-theme", "sphinxemoji", "sphinx-autoapi", "sphinx-notfound-page", ]
I dont know why sphinx do not detect sphinx-notfound-page from conf.py
I dont know if a issue should be open on sphinx project or if a file should be edit inside sphinx-notfound-page project.
Regards
The text was updated successfully, but these errors were encountered:
Package: add sphinx-notfound-page to doc dependencies
sphinx-notfound-page
a686649
Closes #239
Successfully merging a pull request may close this issue.
Best sphinx publication warning a lot about fixe version of package use for generate the documentation.
For that pip-compile is the way.
Unfortunatlly i have to add sphinx-notfound-page because the commande
Do not add sphinx-notfound-page inside docs/requirements.txt .txt
Here my conf.py import;
The workarround is to declare
pyproject.toml
I dont know why sphinx do not detect sphinx-notfound-page from conf.py
I dont know if a issue should be open on sphinx project or if a file should be edit inside sphinx-notfound-page project.
Regards
The text was updated successfully, but these errors were encountered: