| # Read the Docs configuration file | |
| # See https://docs.readthedocs.io/en/stable/config-file/v2.html for details | |
| version: 2 | |
| build: | |
| os: ubuntu-22.04 | |
| tools: | |
| python: "3.11" | |
| sphinx: | |
| builder: html | |
| configuration: docs/conf.py | |
| fail_on_warning: false | |
| python: | |
| install: | |
| # Equivalent to 'pip install .' | |
| - method: pip | |
| path: . | |
| # Equivalent to 'pip install .[docs]' | |
| - method: pip | |
| path: . | |
| extra_requirements: | |
| - docs | |