diff --git a/.readthedocs.yaml b/.readthedocs.yaml index 37ce7be..2276bb8 100644 --- a/.readthedocs.yaml +++ b/.readthedocs.yaml @@ -10,7 +10,15 @@ build: os: ubuntu-20.04 tools: python: "3.10" - + jobs: + pre_install: + - pip install --upgrade --upgrade-strategy only-if-needed --group doc . + build: + html: + python -m sphinx -T -b html -d _build/doctrees -D language=en . $READTHEDOCS_OUTPUT/html + post_build: + - echo "Command run at 'post_build' step" + - echo `date` # Build documentation in the docs/ directory with Sphinx sphinx: @@ -24,9 +32,9 @@ formats: # extra. #Optionally declare the Python requirements required to build your docs -python: - install: - - method: pip - path: . - extra_requirements: - - doc +# python: +# install: +# - method: pip +# path: . +# extra_requirements: +# - doc