From 3dc724a21a8f7ad5478d9e3afde2d5afec3b6e0f Mon Sep 17 00:00:00 2001 From: Miguel Ballesteros Date: Wed, 6 Nov 2024 14:40:05 -0500 Subject: [PATCH] Attempt 001 fixing build readthedocs yaml file --- .readthedocs.yaml | 31 +++++++++++++++++++++---------- 1 file changed, 21 insertions(+), 10 deletions(-) diff --git a/.readthedocs.yaml b/.readthedocs.yaml index 3606b11..d9a311b 100644 --- a/.readthedocs.yaml +++ b/.readthedocs.yaml @@ -7,21 +7,32 @@ version: 2 # Set the version of Python and other tools you might need build: - os: ubuntu-24.04 + os: ubuntu-22.04 tools: python: "3.12" + jobs: + install: + - requirements: docs/requirements.txt + - python.install.method: pip + - python.install.path: . + sphinx: + configuration: docs/source/conf.py + formats: + - pdf + - html # Build documentation in the docs/ directory with Sphinx -sphinx: - configuration: docs/source/conf.py +# sphinx: +# configuration: docs/source/conf.py # Optionally build your docs in additional formats such as PDF -formats: - - pdf +# formats: +# - pdf # Optionally set the version of Python and requirements required to build your docs -python: - install: - - requirements: docs/requirements.txt - - method: pip - path: . +# python: +# install: +# - requirements: docs/requirements.txt +# - method: pip +# path: . +