fix: install Flask package and doc dependencies in ReadTheDocs build config

This commit is contained in:
Akshay 2025-05-16 15:47:35 +05:30
parent 34cf340bdf
commit e22cdae09a

View file

@ -4,5 +4,6 @@ build:
tools: tools:
python: '3.11' python: '3.11'
commands: commands:
- pip install sphinx sphinx-rtd-theme pallets_sphinx_themes - pip install -e . # install the package itself
- pip install sphinx sphinx-rtd-theme pallets_sphinx_themes # install doc dependencies
- sphinx-build -b dirhtml docs $READTHEDOCS_OUTPUT/html - sphinx-build -b dirhtml docs $READTHEDOCS_OUTPUT/html