.readthedocs.yaml 687 B

123456789101112131415161718192021222324252627282930313233
  1. # .readthedocs.yaml - Read the Docs configuration file.
  2. # See https://docs.readthedocs.io/en/stable/config-file/v2.html for details.
  3. version: 2
  4. build:
  5. os: ubuntu-22.04
  6. tools:
  7. python: "3.11"
  8. jobs:
  9. post_checkout:
  10. - git fetch --unshallow
  11. apt_packages:
  12. - build-essential
  13. - pkg-config
  14. - libacl1-dev
  15. - libssl-dev
  16. - liblz4-dev
  17. - libzstd-dev
  18. - libxxhash-dev
  19. python:
  20. install:
  21. - requirements: requirements.d/development.lock.txt
  22. - requirements: requirements.d/docs.txt
  23. - method: pip
  24. path: .
  25. sphinx:
  26. configuration: docs/conf.py
  27. formats:
  28. - htmlzip