.readthedocs.yaml 571 B

12345678910111213141516171819202122
  1. # .readthedocs.yaml
  2. # Read the Docs configuration file
  3. # See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
  4. # Required
  5. version: 2
  6. # Set the version of Python and other tools you might need
  7. build:
  8. os: ubuntu-22.04
  9. tools:
  10. python: "3.11"
  11. # Build documentation in the docs/ directory with Sphinx
  12. sphinx:
  13. configuration: docs/conf.py
  14. # We recommend specifying your dependencies to enable reproducible builds:
  15. # https://docs.readthedocs.io/en/stable/guides/reproducible-builds.html
  16. python:
  17. install:
  18. - requirements: docs/requirements.txt