Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Create a file in the root of your repository called .readthedocs.yaml (yes there's a leading dot) with the following content:

Code Block
abc


No Format
---
version: 2

formats:
  - htmlzip

build:
  image: latest

python:
  version: 3.7
  install:
    - requirements: docs/requirements-docs.txt

sphinx:
  configuration: docs/conf.py

...